* java/util/GregorianCalendar.java (GregorianCalendar): Call
setTimeInMillis() to set the default/current time.
From-SVN: r44467
+2001-07-30 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
+
+ * java/util/GregorianCalendar.java (GregorianCalendar): Call
+ setTimeInMillis() to set the default/current time.
+
2001-07-29 Mark Wielaard <mark@klomp.org>
* HACKING: add description on updating namespace
super(zone, locale);
ResourceBundle rb = ResourceBundle.getBundle(bundleName, locale);
gregorianCutover = ((Date) rb.getObject("gregorianCutOver")).getTime();
- time = System.currentTimeMillis();
- isTimeSet = true;
- areFieldsSet = false;
+ setTimeInMillis(System.currentTimeMillis());
}
/**