DateUtils.parseDate requires String[]

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@983515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-08-09 03:20:30 +00:00
parent 55a3c67672
commit 4b4ceaca41

View File

@ -264,7 +264,7 @@ public void testParseDate() throws Exception {
fail();
} catch (IllegalArgumentException ex) {}
try {
DateUtils.parseDate(dateStr, null);
DateUtils.parseDate(dateStr, (String[]) null);
fail();
} catch (IllegalArgumentException ex) {}
try {