Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5A2AE18286 for ; Tue, 16 Jun 2015 18:54:29 +0000 (UTC) Received: (qmail 63309 invoked by uid 500); 16 Jun 2015 18:54:29 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 63281 invoked by uid 500); 16 Jun 2015 18:54:29 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 63273 invoked by uid 99); 16 Jun 2015 18:54:29 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Jun 2015 18:54:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 21A0AE36E3; Tue, 16 Jun 2015 18:54:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: fthomas@apache.org To: commits@flex.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-falcon] [refs/heads/develop] - Fix slash Date: Tue, 16 Jun 2015 18:54:29 +0000 (UTC) Repository: flex-falcon Updated Branches: refs/heads/develop 5c8e24cce -> 5b2f6f68d Fix slash Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/5b2f6f68 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/5b2f6f68 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/5b2f6f68 Branch: refs/heads/develop Commit: 5b2f6f68d57ef5eb96d270c48ee8300f0eafbd60 Parents: 5c8e24c Author: Frédéric THOMAS Authored: Tue Jun 16 19:54:16 2015 +0100 Committer: Frédéric THOMAS Committed: Tue Jun 16 19:54:16 2015 +0100 ---------------------------------------------------------------------- .../compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5b2f6f68/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java index 6e38a03..92a92e6 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSPublisher.java @@ -539,7 +539,7 @@ public class MXMLFlexJSPublisher extends JSGoogPublisher implements appendString.append(ASEmitterTokens.SINGLE_QUOTE.getToken()); appendString.append(ASEmitterTokens.PAREN_CLOSE.getToken()); appendString.append(ASEmitterTokens.SEMICOLON.getToken()); - appendString.append("/n"); + appendString.append("\n"); String fileData = readCode(new File(path)); int reqidx = fileData.indexOf(appendString.toString());