diff --git a/src/share/classes/java/time/ZoneId.java b/src/share/classes/java/time/ZoneId.java index 42f390937fbf5c4ec2247ffddfcf7622eae4c521..aabc7fce93bd43123d1529278abd74d4f9fdb587 100644 --- a/src/share/classes/java/time/ZoneId.java +++ b/src/share/classes/java/time/ZoneId.java @@ -168,51 +168,6 @@ import java.util.TimeZone; */ public abstract class ZoneId implements Serializable { - /** - * A map of zone overrides to enable the older short time-zone names to be used. - *

- * Use of short zone IDs has been deprecated in {@code java.util.TimeZone}. - * This map allows the IDs to continue to be used via the - * {@link #of(String, Map)} factory method. - *

- * This map contains an older mapping of the IDs, where 'EST', 'MST' and 'HST' - * map to IDs which include daylight savings. - * This is in line with versions of TZDB before 2005r. - *

- * This maps as follows: - *

- * The map is unmodifiable. - */ - public static final Map OLD_SHORT_IDS; /** * A map of zone overrides to enable the short time-zone names to be used. *

@@ -220,9 +175,9 @@ public abstract class ZoneId implements Serializable { * This map allows the IDs to continue to be used via the * {@link #of(String, Map)} factory method. *

- * This map contains a newer mapping of the IDs, where 'EST', 'MST' and 'HST' - * map to IDs which do not include daylight savings - * This is in line with TZDB 2005r and later. + * This map contains a mapping of the IDs that is in line with TZDB 2005r and + * later, where 'EST', 'MST' and 'HST' map to IDs which do not include daylight + * savings. *

* This maps as follows: *