You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2019/02/06 16:39:57 UTC

[royale-compiler] 01/05: compiler-jx: removed unnecessary console output from tests

This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit e79311c7f64060ece2fb81d25a713497cba7c171
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Mon Feb 4 15:17:19 2019 -0800

    compiler-jx: removed unnecessary console output from tests
---
 .../compiler/internal/codegen/js/royale/TestRoyaleExpressions.java      | 2 --
 1 file changed, 2 deletions(-)

diff --git a/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/js/royale/TestRoyaleExpressions.java b/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/js/royale/TestRoyaleExpressions.java
index 6e44fe1..93db140 100644
--- a/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/js/royale/TestRoyaleExpressions.java
+++ b/compiler-jx/src/test/java/org/apache/royale/compiler/internal/codegen/js/royale/TestRoyaleExpressions.java
@@ -1252,7 +1252,6 @@ public class TestRoyaleExpressions extends TestGoogExpressions
     {
         IFunctionNode node = (IFunctionNode) getNode("function a() {};", IFunctionNode.class);
         asBlockWalker.visitFunction(node);
-        System.err.println("**** " + removeGeneratedString(writer.toString()));
         assertOut("RoyaleTest_A.prototype.royaleTest_a = function() {\n" +
                   "  var self = this;\n" +
                   "  function a() {\n" +
@@ -1267,7 +1266,6 @@ public class TestRoyaleExpressions extends TestGoogExpressions
     {
         IFunctionNode node = (IFunctionNode) getNode("function a(foo:int, bar:String = 'goo'):int{return -1;};", IFunctionNode.class);
         asBlockWalker.visitFunction(node);
-        System.err.println("**** " + removeGeneratedString(writer.toString()));
         assertOut("RoyaleTest_A.prototype.royaleTest_a = function() {\n" +
                   "  var self = this;\n" +
                   "  function a(foo, bar) {\n" +