Skip to content

Commit cfe70eb

Browse files
committedJan 15, 2025
8342550: Log warning for using JDK1.1 compatible time zone IDs for future removal
Reviewed-by: jlu, joehw, iris
1 parent 983e24f commit cfe70eb

File tree

3 files changed

+61
-5
lines changed

3 files changed

+61
-5
lines changed
 

‎src/java.base/share/classes/java/util/TimeZone.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,6 +46,7 @@
4646
import sun.util.calendar.ZoneInfo;
4747
import sun.util.calendar.ZoneInfoFile;
4848
import sun.util.locale.provider.TimeZoneNameUtility;
49+
import sun.util.logging.PlatformLogger;
4950

5051
/**
5152
* {@code TimeZone} represents a time zone offset, and also figures out daylight
@@ -596,6 +597,11 @@ private ZoneId toZoneId0() {
596597
}
597598

598599
private static TimeZone getTimeZone(String ID, boolean fallback) {
600+
if (ZoneId.SHORT_IDS.containsKey(ID)) {
601+
PlatformLogger.getLogger(TimeZone.class.getName())
602+
.warning("Use of the three-letter time zone ID \"%s\" is deprecated and it will be removed in a future release"
603+
.formatted(ID));
604+
}
599605
TimeZone tz = ZoneInfo.getTimeZone(ID);
600606
if (tz == null) {
601607
tz = parseCustomTimeZone(ID);

‎src/java.base/share/classes/sun/util/cldr/CLDRTimeZoneNameProviderImpl.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -35,7 +35,8 @@
3535
import java.util.Objects;
3636
import java.util.ResourceBundle;
3737
import java.util.Set;
38-
import java.util.TimeZone;
38+
39+
import sun.util.calendar.ZoneInfo;
3940
import sun.util.calendar.ZoneInfoFile;
4041
import sun.util.locale.provider.LocaleProviderAdapter;
4142
import sun.util.locale.provider.LocaleResources;
@@ -93,7 +94,7 @@ protected String[] getDisplayNameArray(String id, Locale locale) {
9394
case "":
9495
// Fill in empty elements
9596
deriveFallbackName(namesSuper, i, locale,
96-
TimeZone.getTimeZone(id).toZoneId().getRules().isFixedOffset());
97+
ZoneInfo.getTimeZone(id).toZoneId().getRules().isFixedOffset());
9798
break;
9899
case NO_INHERITANCE_MARKER:
99100
// CLDR's "no inheritance marker"
@@ -131,7 +132,7 @@ protected String[][] getZoneStrings(Locale locale) {
131132

132133
// Derive fallback time zone name according to LDML's logic
133134
private void deriveFallbackNames(String[] names, Locale locale) {
134-
boolean noDST = TimeZone.getTimeZone(names[0]).toZoneId().getRules().isFixedOffset();
135+
boolean noDST = ZoneInfo.getTimeZone(names[0]).toZoneId().getRules().isFixedOffset();
135136

136137
for (int i = INDEX_STD_LONG; i <= INDEX_GEN_SHORT; i++) {
137138
deriveFallbackName(names, i, locale, noDST);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8342550
27+
* @summary Three-letter time zone IDs should output a deprecated warning
28+
* message.
29+
* @library /test/lib
30+
* @build jdk.test.lib.process.ProcessTools
31+
* @run main ThreeLetterZoneID
32+
*/
33+
import java.util.TimeZone;
34+
import jdk.test.lib.process.ProcessTools;
35+
36+
public class ThreeLetterZoneID {
37+
public static void main(String... args) throws Exception {
38+
if (args.length > 0) {
39+
TimeZone.getTimeZone("PST");
40+
} else {
41+
checkWarningMessage();
42+
}
43+
}
44+
45+
public static void checkWarningMessage() throws Exception {
46+
ProcessTools.executeTestJava("ThreeLetterZoneID", "dummy")
47+
.shouldContain("Use of the three-letter time zone ID \"PST\" is deprecated and it will be removed in a future release");
48+
}
49+
}

0 commit comments

Comments
 (0)
Please sign in to comment.