Name: rmT116609 Date: 04/05/2004
A DESCRIPTION OF THE PROBLEM :
In the example for SimpleTimeZone class, http://java.sun.com/j2se/1.4.2/docs/api/java/util/SimpleTimeZone.html, the example for Los Angeles is given as:
// Base GMT offset: -8:00
// DST starts: at 2:00am in standard time
// on the first Sunday in April
// DST ends: at 2:00am in daylight time
// on the last Sunday in October
// Save: 1 hour
SimpleTimeZone(-28800000,
"America/Los_Angeles",
Calendar.APRIL, 1, -Calendar.SUNDAY,
7200000,
Calendar.OCTOBER, -1, Calendar.SUNDAY,
7200000,
3600000)
the 5th entry should not be -Calendar.SUNDAY as that's nonsensical, but rather Calendar.SUNDAY.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
http://java.sun.com/j2se/1.4.2/docs/api/java/util/SimpleTimeZone.html
http://java.sun.com/j2se/1.5.0/docs/api/java/util/SimpleTimeZone.html
REPRODUCIBILITY :
This bug can be reproduced always.
(Incident Review ID: 246367)
======================================================================
- duplicates
-
JDK-4959485 Doc: java.util.SimpleTimeZone class javadoc contradict itself and implementation
-
- Closed
-