Fix a small typo (#1183)

This commit is contained in:
Trung Do 2017-10-31 14:43:24 -04:00 committed by inder123
parent 6c05cedecb
commit 855f0493d0

View File

@ -266,7 +266,7 @@ public class ISO8601Utils
} catch (IllegalArgumentException e) {
fail = e;
}
String input = (date == null) ? null : ('"' + date + "'");
String input = (date == null) ? null : ('"' + date + '"');
String msg = fail.getMessage();
if (msg == null || msg.isEmpty()) {
msg = "("+fail.getClass().getName()+")";