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 2022/11/28 22:05:34 UTC

[royale-compiler] branch develop updated: remove unnecessary output

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


The following commit(s) were added to refs/heads/develop by this push:
     new ca428e9fe remove unnecessary output
ca428e9fe is described below

commit ca428e9fe0aa69161b70a1634f87620ca39a2ed0
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Mon Nov 28 14:05:22 2022 -0800

    remove unnecessary output
---
 compiler/src/test/java/as/ASVerbatimStringTests.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/compiler/src/test/java/as/ASVerbatimStringTests.java b/compiler/src/test/java/as/ASVerbatimStringTests.java
index 6b6ddc2ce..ecbf66ce2 100644
--- a/compiler/src/test/java/as/ASVerbatimStringTests.java
+++ b/compiler/src/test/java/as/ASVerbatimStringTests.java
@@ -37,7 +37,6 @@ public class ASVerbatimStringTests extends ASFeatureTestsBase
 			"assertEqual('verbatim string', s2, 'verbatim\\\\tstring');",
         };
         String source = getAS(new String[0], new String[0], testCode, new String[0]);
-		System.err.println("*** " + source);
 
         compileAndRun(source);
     }