Repair r4

Why did that get undone?
This commit is contained in:
dotasek 2022-08-25 09:39:22 -04:00
parent e406fe3645
commit f96b13e3b9
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ public abstract class BaseDateTimeType extends PrimitiveType<Date> {
validateValueInRange(theValue, theMinimum, theMaximum);
Calendar cal;
if (getValue() == null) {
cal = new GregorianCalendar(0,0,0);
cal = new GregorianCalendar();
} else {
cal = getValueAsCalendar();
}