Commit 6f4226f8 by Tom Tromey Committed by Tom Tromey

GregorianCalendar.java (computeTime): Only call getTimeZone() once.

	* java/util/GregorianCalendar.java (computeTime): Only call
	getTimeZone() once.

From-SVN: r42121
parent d2c43675
2001-05-15 Tom Tromey <tromey@redhat.com>
* java/util/GregorianCalendar.java (computeTime): Only call
getTimeZone() once.
2001-05-14 Tom Tromey <tromey@redhat.com>
* java/text/SimpleDateFormat.java (parse): Clear DST_OFFSET and
......
......@@ -405,7 +405,7 @@ public class GregorianCalendar extends Calendar
TimeZone zone = getTimeZone();
int rawOffset = isSet[ZONE_OFFSET]
? fields[ZONE_OFFSET] : getTimeZone().getRawOffset();
? fields[ZONE_OFFSET] : zone.getRawOffset();
int dayOfYear = daysOfYear[0] + daysOfYear[1];
int month = (dayOfYear * 5 + 3) / (31 + 30 + 31 + 30 + 31);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment