You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/08/09 02:17:58 UTC

[royale-compiler] branch develop updated: fix output in info record

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 60edbc6  fix output in info record
60edbc6 is described below

commit 60edbc67f800f4428bd190765d775e7acca61425
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Aug 8 19:17:49 2018 -0700

    fix output in info record
---
 .../royale/compiler/internal/codegen/mxml/royale/MXMLRoyaleEmitter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/mxml/royale/MXMLRoyaleEmitter.java b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/mxml/royale/MXMLRoyaleEmitter.java
index 53f4636..af18bd9 100644
--- a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/mxml/royale/MXMLRoyaleEmitter.java
+++ b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/mxml/royale/MXMLRoyaleEmitter.java
@@ -320,7 +320,7 @@ public class MXMLRoyaleEmitter extends MXMLEmitter implements
 	            	Map<String, String> aliases = royaleProject.remoteClassAliasMap;
 	            	if (aliases != null && aliases.size() > 0)
 	            	{
-		            	String aliasInject = "remoteClassAliases: {";
+		            	String aliasInject = sep + "remoteClassAliases: {";
 		            	boolean firstOne = true;
 		            	for (String className : aliases.keySet())
 		            	{