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 f759f2d  this was missed from latest commit
f759f2d is described below

commit f759f2de9ae7ad89a82868968207ce618c80436f
Author: Carlos Rovira <[email protected]>
AuthorDate: Sun Jun 2 18:12:37 2019 +0200

    this was missed from latest commit
---
 .../java/org/apache/royale/compiler/clients/COMPJSCRoyale.java | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

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 481ec55..1fd2b83 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
@@ -320,15 +320,17 @@ public class COMPJSCRoyale extends MXMLJSCRoyale
 
                             ByteArrayOutputStream temp = new 
ByteArrayOutputStream();
                             ByteArrayOutputStream sourceMapTemp = null;
-                               if (project.config.getSourceMap())
+                            
+                            boolean isExterns = false;
+                               if (writer instanceof JSWriter)
+                                       isExterns = 
((JSWriter)writer).isExterns();
+                               
+                            if (project.config.getSourceMap())
                                {
                                 sourceMapTemp = new ByteArrayOutputStream();
                                }
                             writer.writeTo(temp, sourceMapTemp, null);
 
-                            boolean isExterns = false;
-                               if (writer instanceof JSWriter)
-                                       isExterns = 
((JSWriter)writer).isExterns();
                                String outputClassFile = getOutputClassFile(
                                     cu.getQualifiedNames().get(0),
                                     isExterns ? externsOut : jsOut,

Reply via email to