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 2019/06/12 18:28:25 UTC

[royale-compiler] branch develop updated: comment out some diagnostic console output

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 00d1997  comment out some diagnostic console output
00d1997 is described below

commit 00d1997060e987ac046c6e6d8690828574e9fd6c
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Jun 12 11:28:13 2019 -0700

    comment out some diagnostic console output
---
 .../org/apache/royale/compiler/internal/embedding/EmbedData.java  | 4 ++--
 .../org/apache/royale/compiler/internal/targets/SWCTarget.java    | 4 ++--
 .../java/org/apache/royale/compiler/internal/targets/Target.java  | 8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/compiler/src/main/java/org/apache/royale/compiler/internal/embedding/EmbedData.java b/compiler/src/main/java/org/apache/royale/compiler/internal/embedding/EmbedData.java
index d7c206b..4acefe2 100644
--- a/compiler/src/main/java/org/apache/royale/compiler/internal/embedding/EmbedData.java
+++ b/compiler/src/main/java/org/apache/royale/compiler/internal/embedding/EmbedData.java
@@ -550,8 +550,8 @@ public class EmbedData implements IEmbedData
         filename = filename.replace(".", "_");
         String qname = filename + "$" + StringEncoder.stringToMD5String(uniqueName);
         transcoder.hashCodeSourceName = uniqueName;
-        System.out.println("Embed UniqueName: " + uniqueName);
-        System.out.println("Embed QName: " + qname);
+//        System.out.println("Embed UniqueName: " + uniqueName);
+//        System.out.println("Embed QName: " + qname);
         
         // add the transcoder hashCode to the end of the QName to ensure
         // two embed data's with the same source, but different attributes
diff --git a/compiler/src/main/java/org/apache/royale/compiler/internal/targets/SWCTarget.java b/compiler/src/main/java/org/apache/royale/compiler/internal/targets/SWCTarget.java
index 693631a..dbeafc5 100644
--- a/compiler/src/main/java/org/apache/royale/compiler/internal/targets/SWCTarget.java
+++ b/compiler/src/main/java/org/apache/royale/compiler/internal/targets/SWCTarget.java
@@ -696,8 +696,8 @@ public class SWCTarget extends Target implements ISWCTarget
         
         Target.RootedCompilationUnits units = new Target.RootedCompilationUnits(rootCompilationUnits, problems);
         Set<ICompilationUnit> unitSet = units.getUnits();
-        for (ICompilationUnit cu : unitSet)
-        	System.out.println(cu.getName());
+//        for (ICompilationUnit cu : unitSet)
+//        	System.out.println(cu.getName());
         return units;
     }
     
diff --git a/compiler/src/main/java/org/apache/royale/compiler/internal/targets/Target.java b/compiler/src/main/java/org/apache/royale/compiler/internal/targets/Target.java
index fc0a5e0..8acd14e 100644
--- a/compiler/src/main/java/org/apache/royale/compiler/internal/targets/Target.java
+++ b/compiler/src/main/java/org/apache/royale/compiler/internal/targets/Target.java
@@ -378,10 +378,10 @@ public abstract class Target implements ITarget
             }
         });
         sortedSet.addAll(visitedSet);
-        System.out.println("visited set");
-        for (ICompilationUnit visited : sortedSet)
-        	System.out.println(visited.getName());
-        System.out.println("end visited set");
+//        System.out.println("visited set");
+//        for (ICompilationUnit visited : sortedSet)
+//        	System.out.println(visited.getName());
+//        System.out.println("end visited set");
         return sortedSet;
     }