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 <[email protected]>
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);
}