Remove more debug output (which is never actually written out)
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1592326 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
98f76f4c98
commit
2f0beab7a8
|
@ -388,7 +388,6 @@ public class FastDateParserTest {
|
||||||
|
|
||||||
private void testSdfAndFdp(final String format, final String date, final boolean shouldFail)
|
private void testSdfAndFdp(final String format, final String date, final boolean shouldFail)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
final boolean debug = false;
|
|
||||||
Date dfdp = null;
|
Date dfdp = null;
|
||||||
Date dsdf = null;
|
Date dsdf = null;
|
||||||
Throwable f = null;
|
Throwable f = null;
|
||||||
|
@ -406,9 +405,6 @@ public class FastDateParserTest {
|
||||||
if (!shouldFail) {
|
if (!shouldFail) {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
if (debug) {
|
|
||||||
System.out.println("sdf:"+format+"/"+date+"=>"+e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -422,16 +418,10 @@ public class FastDateParserTest {
|
||||||
if (!shouldFail) {
|
if (!shouldFail) {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
if (debug) {
|
|
||||||
System.out.println("fdf:"+format+"/"+date+"=>"+e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// SDF and FDF should produce equivalent results
|
// SDF and FDF should produce equivalent results
|
||||||
assertTrue("Should both or neither throw Exceptions", (f==null)==(s==null));
|
assertTrue("Should both or neither throw Exceptions", (f==null)==(s==null));
|
||||||
assertEquals("Parsed dates should be equal", dsdf, dfdp);
|
assertEquals("Parsed dates should be equal", dsdf, dfdp);
|
||||||
if (debug) {
|
|
||||||
System.out.println(format + "," + date + " => " + dsdf);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue