Remove debug output from test

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1592325 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-05-04 08:59:46 +00:00
parent 4b74c38562
commit 98f76f4c98
1 changed files with 0 additions and 1 deletions

View File

@ -219,7 +219,6 @@ public class FastDateParserTest {
final Date out = fdp.parse(fmt);
assertEquals(locale.toString()+" "+in+" "+ format+ " "+tz.getID(), in, out);
} catch (final ParseException pe) {
System.out.println(fmt+" "+locale.toString()+" "+year+" "+ format+ " "+tz.getID());
if (year >= 1868 || !locale.getCountry().equals("JP")) {// LANG-978
throw pe;
}