1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Disable debug output in foldingtest

This commit is contained in:
Anton Leherbauer 2008-01-23 14:30:34 +00:00
parent 17f8a38f4e
commit 2143154aeb

View file

@ -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);
}