You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2020/10/28 10:17:22 UTC

[royale-asjs] branch develop updated (481e547 -> 7098f4a)

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from 481e547  jewel-sectioncontent: fix recent issue causing all section content add "is-selected" making impossible to select it.
     new 32eba63  Revert "Fix assertType for js"
     new 7098f4a  This import should not be necessary

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../Core/src/main/royale/org/apache/royale/debugging/assertType.as    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[royale-asjs] 01/02: Revert "Fix assertType for js"

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 32eba631f241dbdd914a53993fa4d1f51d0cce96
Author: Harbs <ha...@in-tools.com>
AuthorDate: Wed Oct 28 12:15:12 2020 +0200

    Revert "Fix assertType for js"
    
    This reverts commit 00c5b2ac31a1bbef87a7d388f1bc80476f6ff187.
---
 .../Core/src/main/royale/org/apache/royale/debugging/assertType.as      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
index 27c28a2..647c60f 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
@@ -36,7 +36,7 @@ package org.apache.royale.debugging
         COMPILE::JS
         {
             if(goog.DEBUG)
-                console.assert((obj is type),message); 
+                assert((obj is type),message); 
         }
     }
 }


[royale-asjs] 02/02: This import should not be necessary

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 7098f4a3caef4e49e4bd39b915c8c0a5a694fedd
Author: Harbs <ha...@in-tools.com>
AuthorDate: Wed Oct 28 12:17:03 2020 +0200

    This import should not be necessary
---
 .../Core/src/main/royale/org/apache/royale/debugging/assertType.as      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
index 647c60f..6a97e1b 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/debugging/assertType.as
@@ -18,7 +18,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.debugging
 {
-
+    import org.apache.royale.debugging.assert;
     COMPILE::JS
     {
         import goog.DEBUG;