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

[royale-asjs] branch develop updated: fix assignement

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

carlosrovira 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 40a1e4c  fix assignement
40a1e4c is described below

commit 40a1e4c4d34721102e5fbac10c45bb5dfa36c9a7
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sat Oct 27 15:55:05 2018 +0200

    fix assignement
---
 frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
index 5621f95..4c4dc96 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
@@ -1012,7 +1012,7 @@ public class ObjectUtil
                 var classInfo:TypeDefinition = describeType(obj);
                 if (classInfo == null) // probably not a Royale class
                 {
-                    className == "Object";
+                    className = "Object";
                     //classAlias = null;
                     isDynamic = true;
                 }