You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by gr...@apache.org on 2018/12/13 20:32:26 UTC

[royale-asjs] branch develop updated: Fix for release mode not working with ClassAliasBead after latest compiler change

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 3f5c478  Fix for release mode not working with ClassAliasBead after latest compiler change
3f5c478 is described below

commit 3f5c47867ada3e9c2b8acf095e914ed96411298d
Author: greg-dove <gr...@gmail.com>
AuthorDate: Fri Dec 14 09:32:10 2018 +1300

    Fix for release mode not working with ClassAliasBead after latest compiler change
---
 .../main/royale/org/apache/royale/reflection/beads/ClassAliasBead.as    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/ClassAliasBead.as b/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/ClassAliasBead.as
index 8df944e..c7d55a9 100644
--- a/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/ClassAliasBead.as
+++ b/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/ClassAliasBead.as
@@ -76,7 +76,7 @@ package org.apache.royale.reflection.beads
             _strand = value;
             var app:IFlexInfo = value as IFlexInfo;
             var info:Object = app.info();
-            var map:Object = info.remoteClassAliases;
+            var map:Object = info['remoteClassAliases'];
             if (map)
             {
                 for (var cn:String in map)