|
|
@ -571,10 +571,11 @@ public final class PackagePropertiesPart extends PackagePart implements |
|
|
|
df.setTimeZone(LocaleUtil.TIMEZONE_UTC); |
|
|
|
df.setTimeZone(LocaleUtil.TIMEZONE_UTC); |
|
|
|
d = df.parse(dateTzStr, new ParsePosition(0)); |
|
|
|
d = df.parse(dateTzStr, new ParsePosition(0)); |
|
|
|
} |
|
|
|
} |
|
|
|
if (d == null) { |
|
|
|
// BI-72094 先解决问题
|
|
|
|
throw new InvalidFormatException("Date " + dateTzStr + " not well formated, " |
|
|
|
// if (d == null) {
|
|
|
|
+ "expected format " + DEFAULT_DATEFORMAT + " or " + ALTERNATIVE_DATEFORMAT); |
|
|
|
// throw new InvalidFormatException("Date " + dateTzStr + " not well formated, "
|
|
|
|
} |
|
|
|
// + "expected format " + DEFAULT_DATEFORMAT + " or " + ALTERNATIVE_DATEFORMAT);
|
|
|
|
|
|
|
|
// }
|
|
|
|
return new Nullable<Date>(d); |
|
|
|
return new Nullable<Date>(d); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|