Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2012-12-07 10:30:09 +0000
committerJayaprakash Arthanareeswaran2013-02-04 10:31:06 +0000
commitdc65968cfdfc1f348d46e5f149ca1b63c97e4fe1 (patch)
tree2c1b61939cc0578a68715bfbb42539a7f4101b1a
parent5138a70372af4817aefdd3da44dfadf7f7557bf3 (diff)
downloadeclipse.jdt.core-dc65968cfdfc1f348d46e5f149ca1b63c97e4fe1.tar.gz
eclipse.jdt.core-dc65968cfdfc1f348d46e5f149ca1b63c97e4fe1.tar.xz
eclipse.jdt.core-dc65968cfdfc1f348d46e5f149ca1b63c97e4fe1.zip
Fix for bug 393149 - enable the DEBUG sysout
-rw-r--r--org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
index a7d925fdfc..2e4d114936 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/runtime/LocalVMLauncher.java
@@ -128,12 +128,12 @@ protected Process execCommandLine() throws TargetException {
// does not properly handle spaces in arguments on Unix/Linux platforms.
String[] commandLine = getCommandLine();
- // DEBUG - temporarily enabled for https://bugs.eclipse.org/393149
- for (int i = 0; i < commandLine.length; i++) {
+ // DEBUG
+ /*for (int i = 0; i < commandLine.length; i++) {
System.out.print(commandLine[i] + " ");
}
System.out.println();
-
+ */
vmProcess= Runtime.getRuntime().exec(commandLine);
} catch (IOException e) {

Back to the top