Skip to main content
summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAnton Leherbauer2008-01-23 14:30:51 +0000
committerAnton Leherbauer2008-01-23 14:30:51 +0000
commitb542519c2b7e6dc20b2b7a66772fb62d791b02bb (patch)
tree12d3e84b2ae22de987faf409edf940b94231b9b8 /core
parentafd9c72135ea06d50f71a817e19d05a68fe6e9de (diff)
downloadorg.eclipse.cdt-b542519c2b7e6dc20b2b7a66772fb62d791b02bb.tar.gz
org.eclipse.cdt-b542519c2b7e6dc20b2b7a66772fb62d791b02bb.tar.xz
org.eclipse.cdt-b542519c2b7e6dc20b2b7a66772fb62d791b02bb.zip
Disable debug output in foldingtest
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/FoldingTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/FoldingTest.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/FoldingTest.java
index 2e618bdff65..436041af84a 100644
--- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/FoldingTest.java
+++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/FoldingTest.java
@@ -202,7 +202,7 @@ public class FoldingTest extends TestCase {
createPosition(65, 67),
createPosition(70, 75, 71),
};
- if (true) System.out.println(toString(actual));
+ if (false) System.out.println(toString(actual));
assertEqualPositions(expected, actual);
}
@@ -226,7 +226,7 @@ public class FoldingTest extends TestCase {
createPosition(65, 67),
createPosition(70, 75, 71),
};
- if (true) System.out.println(toString(actual));
+ if (false) System.out.println(toString(actual));
assertEqualPositions(expected, actual);
}

Back to the top