From commits-return-5037-archive-asf-public=cust-asf.ponee.io@royale.apache.org Thu Aug 9 04:18:00 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 88640180600 for ; Thu, 9 Aug 2018 04:17:59 +0200 (CEST) Received: (qmail 81560 invoked by uid 500); 9 Aug 2018 02:17:58 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 81551 invoked by uid 99); 9 Aug 2018 02:17:58 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Aug 2018 02:17:58 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1BDF082F79; Thu, 9 Aug 2018 02:17:58 +0000 (UTC) Date: Thu, 09 Aug 2018 02:17:58 +0000 To: "commits@royale.apache.org" Subject: [royale-compiler] branch develop updated: fix output in info record MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153378107805.4078.13179068799429062804@gitbox.apache.org> From: aharui@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-compiler X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: f60899dbd4c81fbef43769a3977f09d636f6bafe X-Git-Newrev: 60edbc67f800f4428bd190765d775e7acca61425 X-Git-Rev: 60edbc67f800f4428bd190765d775e7acca61425 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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 aliases = royaleProject.remoteClassAliasMap; if (aliases != null && aliases.size() > 0) { - String aliasInject = "remoteClassAliases: {"; + String aliasInject = sep + "remoteClassAliases: {"; boolean firstOne = true; for (String className : aliases.keySet()) {