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-compiler.git
The following commit(s) were added to refs/heads/develop by this push:
new 905517e restore/reposition a system.out.println that was incorrectly
moved by accident
905517e is described below
commit 905517efd77d096c7a3168b2e8294f0551e5d290
Author: Carlos Rovira <[email protected]>
AuthorDate: Sun Jun 2 18:51:08 2019 +0200
restore/reposition a system.out.println that was incorrectly moved by
accident
---
.../src/main/java/org/apache/royale/compiler/clients/COMPJSCRoyale.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/compiler-jx/src/main/java/org/apache/royale/compiler/clients/COMPJSCRoyale.java
b/compiler-jx/src/main/java/org/apache/royale/compiler/clients/COMPJSCRoyale.java
index 402e7af..5394fe4 100644
---
a/compiler-jx/src/main/java/org/apache/royale/compiler/clients/COMPJSCRoyale.java
+++
b/compiler-jx/src/main/java/org/apache/royale/compiler/clients/COMPJSCRoyale.java
@@ -341,7 +341,6 @@ public class COMPJSCRoyale extends MXMLJSCRoyale
zipOutputStream.flush();
zipOutputStream.closeEntry();
fileList.append(" <file path=\"" +
outputClassFile + "\" mod=\"" + System.currentTimeMillis() + "\"/>\n");
- System.out.println("Writing file: " +
sourceMapFile);
// if the file is @externs DON'T create source map
file
boolean createSourceMapFile = false;
@@ -355,6 +354,7 @@ public class COMPJSCRoyale extends MXMLJSCRoyale
cu.getQualifiedNames().get(0),
isExterns ? externsOut : jsOut,
false).getPath();
+ System.out.println("Writing file: " +
sourceMapFile);
zipOutputStream.putNextEntry(new
ZipEntry(sourceMapFile));
sourceMapTemp.writeTo(zipOutputStream);
zipOutputStream.flush();