Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2017-12-20 11:20:45 +0000
committerJay Arthanareeswaran2017-12-20 11:20:45 +0000
commitf3ecb10a921e623034fe2bb4884dab8e6f6a0a9e (patch)
tree3f371c33951088c60d2c716c365429b347336a30 /org.eclipse.jdt.core.tests.compiler/src
parentd01ae236ae0619b4ef80bd3b44ead7b6b3237cdb (diff)
downloadeclipse.jdt.core-f3ecb10a921e623034fe2bb4884dab8e6f6a0a9e.tar.gz
eclipse.jdt.core-f3ecb10a921e623034fe2bb4884dab8e6f6a0a9e.tar.xz
eclipse.jdt.core-f3ecb10a921e623034fe2bb4884dab8e6f6a0a9e.zip
Bug 526996 - Remove syso statements
Change-Id: Ica1bcb06e8ec323b4dd47711747353bef6cdcdb8 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.core.tests.compiler/src')
-rw-r--r--org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/dom/StandAloneASTParserTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/dom/StandAloneASTParserTest.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/dom/StandAloneASTParserTest.java
index a0fbc043e0..74def5a154 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/dom/StandAloneASTParserTest.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/dom/StandAloneASTParserTest.java
@@ -745,7 +745,6 @@ public class StandAloneASTParserTest extends AbstractRegressionTest {
@Override
public void acceptAST(String sourceFilePath, CompilationUnit ast) {
super.acceptAST(sourceFilePath, ast);
- System.out.println(sourceFilePath);
}
};
ASTParser parser = ASTParser.newParser(AST.JLS9);
@@ -757,7 +756,6 @@ public class StandAloneASTParserTest extends AbstractRegressionTest {
String[] files = null;
try {
files = new String[] {file.getCanonicalPath(), fileY.getCanonicalPath()};
- System.out.println("Building...");
parser.createASTs(files,
null,
new String[0],
@@ -1553,7 +1551,6 @@ public class StandAloneASTParserTest extends AbstractRegressionTest {
@Override
public void acceptAST(String sourceFilePath, CompilationUnit ast) {
super.acceptAST(sourceFilePath, ast);
- System.out.println(sourceFilePath);
}
};
ASTParser parser = ASTParser.newParser(AST.JLS9);
@@ -1565,7 +1562,6 @@ public class StandAloneASTParserTest extends AbstractRegressionTest {
String[] files = null;
try {
files = new String[] {file.getCanonicalPath(), fileY.getCanonicalPath()};
- System.out.println("Building...");
parser.createASTs(files,
null,
new String[0],

Back to the top