Skip to content

Commit 526e734

Browse files
committedApr 5, 2022
8282819: Deprecate Locale class constructors
Reviewed-by: lancea, rriggs
1 parent 648efd7 commit 526e734

File tree

15 files changed

+256
-73
lines changed

15 files changed

+256
-73
lines changed
 

‎src/demo/share/jfc/CodePointIM/com/sun/inputmethods/internal/codepointim/CodePointInputMethodDescriptor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public InputMethod createInputMethod() throws Exception {
7575
*/
7676
public Locale[] getAvailableLocales() {
7777
Locale[] locales = {
78-
new Locale("", "", ""), };
78+
Locale.ROOT, };
7979
return locales;
8080
}
8181

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

+112-40
Original file line numberDiff line numberDiff line change
@@ -230,46 +230,30 @@
230230
* implementations in a Java Runtime Environment might not support any
231231
* particular Unicode locale attributes or key/type pairs.
232232
*
233-
* <h3>Creating a Locale</h3>
233+
* <h3><a id="ObtainingLocale">Obtaining a Locale</a></h3>
234234
*
235-
* <p>There are several different ways to create a {@code Locale}
235+
* <p>There are several ways to obtain a {@code Locale}
236236
* object.
237237
*
238238
* <h4>Builder</h4>
239239
*
240240
* <p>Using {@link Builder} you can construct a {@code Locale} object
241241
* that conforms to BCP 47 syntax.
242242
*
243-
* <h4>Constructors</h4>
244-
*
245-
* <p>The {@code Locale} class provides three constructors:
246-
* <blockquote>
247-
* <pre>
248-
* {@link #Locale(String language)}
249-
* {@link #Locale(String language, String country)}
250-
* {@link #Locale(String language, String country, String variant)}
251-
* </pre>
252-
* </blockquote>
253-
* These constructors allow you to create a {@code Locale} object
254-
* with language, country and variant, but you cannot specify
255-
* script or extensions.
256-
*
257243
* <h4>Factory Methods</h4>
258244
*
259-
* <p>The method {@link #forLanguageTag} creates a {@code Locale}
260-
* object for a well-formed BCP 47 language tag.
245+
* <p>The method {@link #forLanguageTag} obtains a {@code Locale}
246+
* object for a well-formed BCP 47 language tag. The method
247+
* {@link #of(String, String, String)} and its overloads obtain a
248+
* {@code Locale} object from given {@code language}, {@code country},
249+
* and/or {@code variant} defined above.
261250
*
262251
* <h4>Locale Constants</h4>
263252
*
264253
* <p>The {@code Locale} class provides a number of convenient constants
265-
* that you can use to create {@code Locale} objects for commonly used
266-
* locales. For example, the following creates a {@code Locale} object
267-
* for the United States:
268-
* <blockquote>
269-
* <pre>
270-
* Locale.US
271-
* </pre>
272-
* </blockquote>
254+
* that you can use to obtain {@code Locale} objects for commonly used
255+
* locales. For example, {@code Locale.US} is the {@code Locale} object
256+
* for the United States.
273257
*
274258
* <h3><a id="LocaleMatching">Locale Matching</a></h3>
275259
*
@@ -344,7 +328,7 @@
344328
*
345329
* <h3>Use of Locale</h3>
346330
*
347-
* <p>Once you've created a {@code Locale} you can query it for information
331+
* <p>Once you've obtained a {@code Locale} you can query it for information
348332
* about itself. Use {@code getCountry} to get the country (or region)
349333
* code and {@code getLanguage} to get the language code.
350334
* You can use {@code getDisplayCountry} to get the
@@ -387,7 +371,7 @@
387371
*
388372
* <h3>Compatibility</h3>
389373
*
390-
* <p>In order to maintain compatibility with existing usage, Locale's
374+
* <p>In order to maintain compatibility, Locale's
391375
* constructors retain their behavior prior to the Java Runtime
392376
* Environment version 1.7. The same is largely true for the
393377
* {@code toString} method. Thus Locale objects can continue to
@@ -741,6 +725,9 @@ private Locale(BaseLocale baseLocale, LocaleExtensions extensions) {
741725
* see <a href="#special_cases_constructor">Special Cases</a> for more information.
742726
* </ul>
743727
*
728+
* @deprecated Locale constructors have been deprecated. See <a href ="#ObtainingLocale">
729+
* Obtaining a Locale</a> for other options.
730+
*
744731
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
745732
* up to 8 characters in length. See the {@code Locale} class description about
746733
* valid language values.
@@ -750,6 +737,7 @@ private Locale(BaseLocale baseLocale, LocaleExtensions extensions) {
750737
* See the {@code Locale} class description for the details.
751738
* @throws NullPointerException thrown if any argument is null.
752739
*/
740+
@Deprecated(since="19")
753741
public Locale(String language, String country, String variant) {
754742
if (language == null || country == null || variant == null) {
755743
throw new NullPointerException();
@@ -771,13 +759,17 @@ public Locale(String language, String country, String variant) {
771759
* any syntactic checks on the input.
772760
* </ul>
773761
*
762+
* @deprecated Locale constructors have been deprecated. See <a href="#ObtainingLocale">
763+
* Obtaining a Locale</a> for other options.
764+
*
774765
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
775766
* up to 8 characters in length. See the {@code Locale} class description about
776767
* valid language values.
777768
* @param country An ISO 3166 alpha-2 country code or a UN M.49 numeric-3 area code.
778769
* See the {@code Locale} class description about valid country values.
779770
* @throws NullPointerException thrown if either argument is null.
780771
*/
772+
@Deprecated(since="19")
781773
public Locale(String language, String country) {
782774
this(language, country, "");
783775
}
@@ -794,16 +786,96 @@ public Locale(String language, String country) {
794786
* any syntactic checks on the input.
795787
* </ul>
796788
*
789+
* @deprecated Locale constructors have been deprecated. See <a href="#ObtainingLocale">
790+
* Obtaining a Locale</a> for other options.
791+
*
797792
* @param language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag
798793
* up to 8 characters in length. See the {@code Locale} class description about
799794
* valid language values.
800795
* @throws NullPointerException thrown if argument is null.
801796
* @since 1.4
802797
*/
798+
@Deprecated(since="19")
803799
public Locale(String language) {
804800
this(language, "", "");
805801
}
806802

803+
/**
804+
* Obtains a locale from language, country and variant.
805+
* This method normalizes the language value to lowercase and
806+
* the country value to uppercase.
807+
* @implNote
808+
* <ul>
809+
* <li>This method does not make any syntactic checks on the input.
810+
* Use {@link Locale.Builder} for full syntactic checks with BCP47.
811+
* <li>The two cases ("ja", "JP", "JP") and ("th", "TH", "TH") are handled specially,
812+
* see <a href="#special_cases_constructor">Special Cases</a> for more information.
813+
* <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
814+
* their current forms. See <a href="#legacy_language_codes">Legacy language
815+
* codes</a> for more information.
816+
* </ul>
817+
*
818+
* @param language A language code. See the {@code Locale} class description of
819+
* <a href="#def_language">language</a> values.
820+
* @param country A country code. See the {@code Locale} class description of
821+
* <a href="#def_region">country</a> values.
822+
* @param variant Any arbitrary value used to indicate a variation of a {@code Locale}.
823+
* See the {@code Locale} class description of <a href="#def_variant">variant</a> values.
824+
* @throws NullPointerException thrown if any argument is null.
825+
* @return A {@code Locale} object
826+
* @since 19
827+
*/
828+
public static Locale of(String language, String country, String variant) {
829+
return getInstance(language, "", country, variant, null);
830+
}
831+
832+
/**
833+
* Obtains a locale from language and country.
834+
* This method normalizes the language value to lowercase and
835+
* the country value to uppercase.
836+
* @implNote
837+
* <ul>
838+
* <li>This method does not make any syntactic checks on the input.
839+
* Use {@link Locale.Builder} for full syntactic checks with BCP47.
840+
* <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
841+
* their current forms. See <a href="#legacy_language_codes">Legacy language
842+
* codes</a> for more information.
843+
* </ul>
844+
*
845+
* @param language A language code. See the {@code Locale} class description of
846+
* <a href="#def_language">language</a> values.
847+
* @param country A country code. See the {@code Locale} class description of
848+
* <a href="#def_region">country</a> values.
849+
* @throws NullPointerException thrown if either argument is null.
850+
* @return A {@code Locale} object
851+
* @since 19
852+
*/
853+
public static Locale of(String language, String country) {
854+
return getInstance(language, "", country, "", null);
855+
}
856+
857+
/**
858+
* Obtains a locale from a language code.
859+
* This method normalizes the language value to lowercase.
860+
* @implNote
861+
* <ul>
862+
* <li>This method does not make any syntactic checks on the input.
863+
* Use {@link Locale.Builder} for full syntactic checks with BCP47.
864+
* <li>Obsolete ISO 639 codes ("iw", "ji", and "in") are mapped to
865+
* their current forms. See <a href="#legacy_language_codes">Legacy language
866+
* codes</a> for more information.
867+
* </ul>
868+
*
869+
* @param language A language code. See the {@code Locale} class description of
870+
* <a href="#def_language">language</a> values.
871+
* @throws NullPointerException thrown if argument is null.
872+
* @return A {@code Locale} object
873+
* @since 19
874+
*/
875+
public static Locale of(String language) {
876+
return getInstance(language, "", "", "", null);
877+
}
878+
807879
/**
808880
* Returns a {@code Locale} constructed from the given
809881
* {@code language}, {@code country} and
@@ -1138,14 +1210,14 @@ public static Locale[] getAvailableLocales() {
11381210

11391211
/**
11401212
* Returns a list of all 2-letter country codes defined in ISO 3166.
1141-
* Can be used to create Locales.
1213+
* Can be used to obtain Locales.
11421214
* This method is equivalent to {@link #getISOCountries(Locale.IsoCountryCode type)}
11431215
* with {@code type} {@link IsoCountryCode#PART1_ALPHA2}.
11441216
* <p>
11451217
* <b>Note:</b> The {@code Locale} class also supports other codes for
11461218
* country (region), such as 3-letter numeric UN M.49 area codes.
11471219
* Therefore, the list returned by this method does not contain ALL valid
1148-
* codes that can be used to create Locales.
1220+
* codes that can be used to obtain Locales.
11491221
* <p>
11501222
* Note that this method does not return obsolete 2-letter country codes.
11511223
* ISO3166-3 codes which designate country codes for those obsolete codes,
@@ -1178,7 +1250,7 @@ public static Set<String> getISOCountries(IsoCountryCode type) {
11781250

11791251
/**
11801252
* Returns a list of all 2-letter language codes defined in ISO 639.
1181-
* Can be used to create Locales.
1253+
* Can be used to obtain Locales.
11821254
* <p>
11831255
* <b>Note:</b>
11841256
* <ul>
@@ -1187,7 +1259,7 @@ public static Set<String> getISOCountries(IsoCountryCode type) {
11871259
* languages whose codes have changed.
11881260
* <li>The {@code Locale} class also supports language codes up to
11891261
* 8 characters in length. Therefore, the list returned by this method does
1190-
* not contain ALL valid codes that can be used to create Locales.
1262+
* not contain ALL valid codes that can be used to obtain Locales.
11911263
* </ul>
11921264
*
11931265
* @return An array of ISO 639 two-letter language codes.
@@ -1520,12 +1592,12 @@ public final String toString() {
15201592
* "NY", representing Norwegian Nynorsk (Norway), is converted
15211593
* to a language tag "nn-NO".</li></ul>
15221594
*
1523-
* <p><b>Note:</b> Although the language tag created by this
1595+
* <p><b>Note:</b> Although the language tag obtained by this
15241596
* method is well-formed (satisfies the syntax requirements
15251597
* defined by the IETF BCP 47 specification), it is not
15261598
* necessarily a valid BCP 47 language tag. For example,
15271599
* <pre>
1528-
* new Locale("xx", "YY").toLanguageTag();</pre>
1600+
* Locale.forLanguageTag("xx-YY").toLanguageTag();</pre>
15291601
*
15301602
* will return "xx-YY", but the language subtag "xx" and the
15311603
* region subtag "YY" are invalid because they are not registered
@@ -2510,7 +2582,7 @@ public enum Category {
25102582
* from values configured by the setters. Unlike the {@code Locale}
25112583
* constructors, the {@code Builder} checks if a value configured by a
25122584
* setter satisfies the syntax requirements defined by the {@code Locale}
2513-
* class. A {@code Locale} object created by a {@code Builder} is
2585+
* class. A {@code Locale} object obtained from a {@code Builder} is
25142586
* well-formed and can be transformed to a well-formed IETF BCP 47 language tag
25152587
* without losing information.
25162588
*
@@ -2521,11 +2593,11 @@ public enum Category {
25212593
* {@code IllformedLocaleException} for a variant that does not satisfy
25222594
* this restriction. If it is necessary to support such a variant, use a
25232595
* Locale constructor. However, keep in mind that a {@code Locale}
2524-
* object created this way might lose the variant information when
2596+
* object obtained this way might lose the variant information when
25252597
* transformed to a BCP 47 language tag.
25262598
*
2527-
* <p>The following example shows how to create a {@code Locale} object
2528-
* with the {@code Builder}.
2599+
* <p>The following example shows how to obtain a {@code Locale} object
2600+
* using a {@code Builder}.
25292601
* <blockquote>
25302602
* <pre>
25312603
* Locale aLocale = new Builder().setLanguage("sr").setScript("Latn").setRegion("RS").build();
@@ -2658,7 +2730,7 @@ public Builder setScript(String script) {
26582730
* <p>The typical region value is a two-letter ISO 3166 code or a
26592731
* three-digit UN M.49 area code.
26602732
*
2661-
* <p>The country value in the {@code Locale} created by the
2733+
* <p>The country value in the {@code Locale} obtained from a
26622734
* {@code Builder} is always normalized to upper case.
26632735
*
26642736
* @param region the region
@@ -2831,7 +2903,7 @@ public Builder clearExtensions() {
28312903
}
28322904

28332905
/**
2834-
* Returns an instance of {@code Locale} created from the fields set
2906+
* Returns an instance of {@code Locale} obtained from the fields set
28352907
* on this builder.
28362908
*
28372909
* <p>This applies the conversions listed in {@link Locale#forLanguageTag}

‎src/java.base/share/classes/sun/util/locale/provider/JRELocaleConstants.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2022, 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,10 +35,10 @@
3535
* @author Masayoshi Okutsu
3636
*/
3737
public class JRELocaleConstants {
38-
public static final Locale JA_JP_JP = new Locale("ja", "JP", "JP");
39-
public static final Locale NO_NO_NY = new Locale("no", "NO", "NY");
40-
public static final Locale TH_TH = new Locale("th", "TH");
41-
public static final Locale TH_TH_TH = new Locale("th", "TH", "TH");
38+
public static final Locale JA_JP_JP = Locale.of("ja", "JP", "JP");
39+
public static final Locale NO_NO_NY = Locale.of("no", "NO", "NY");
40+
public static final Locale TH_TH = Locale.of("th", "TH");
41+
public static final Locale TH_TH_TH = Locale.of("th", "TH", "TH");
4242

4343
private JRELocaleConstants() {
4444
}

‎src/java.base/share/classes/sun/util/locale/provider/LocaleServiceProviderPool.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2022, 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
@@ -369,7 +369,7 @@ static Locale getLookupLocale(Locale locale) {
369369
"A locale(" + locale + ") has non-empty extensions, but has illformed fields.");
370370

371371
// Fallback - script field will be lost.
372-
lookupLocale = new Locale(locale.getLanguage(), locale.getCountry(), locale.getVariant());
372+
lookupLocale = Locale.of(locale.getLanguage(), locale.getCountry(), locale.getVariant());
373373
}
374374
}
375375
return lookupLocale;

‎src/java.base/share/classes/sun/util/resources/LocaleData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ private static class LocaleDataStrategy implements Bundles.Strategy {
246246
private static final LocaleDataStrategy INSTANCE = new LocaleDataStrategy();
247247
// TODO: avoid hard-coded Locales
248248
private static final Set<Locale> JAVA_BASE_LOCALES
249-
= Set.of(Locale.ROOT, Locale.ENGLISH, Locale.US, new Locale("en", "US", "POSIX"));
249+
= Set.of(Locale.ROOT, Locale.ENGLISH, Locale.US, Locale.of("en", "US", "POSIX"));
250250

251251
private LocaleDataStrategy() {
252252
}

‎src/java.desktop/share/classes/sun/awt/SunToolkit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ public static Locale getStartupLocale() {
11811181
variant = AccessController.doPrivileged(
11821182
new GetPropertyAction("user.variant", ""));
11831183
}
1184-
startupLocale = new Locale(language, country, variant);
1184+
startupLocale = Locale.of(language, country, variant);
11851185
}
11861186
return startupLocale;
11871187
}

‎src/java.desktop/share/classes/sun/awt/im/ExecutableInputMethodManager.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2022, 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
@@ -375,7 +375,7 @@ synchronized void changeInputMethod(String choice) {
375375
variant = localeString.substring(postIndex + 1);
376376
}
377377
}
378-
Locale locale = new Locale(language, country, variant);
378+
Locale locale = Locale.of(language, country, variant);
379379
locator = locator.deriveLocator(locale);
380380
}
381381

@@ -550,8 +550,8 @@ private synchronized void putPreferredInputMethod(InputMethodLocator locator) {
550550
if (preferredLocale.equals(Locale.KOREA)) {
551551
preferredLocale = Locale.KOREAN;
552552
}
553-
if (preferredLocale.equals(new Locale("th", "TH"))) {
554-
preferredLocale = new Locale("th");
553+
if (preferredLocale.equals(Locale.of("th", "TH"))) {
554+
preferredLocale = Locale.of("th");
555555
}
556556

557557
// obtain node
@@ -623,10 +623,10 @@ private Locale getAdvertisedLocale(InputMethodLocator locator, Locale locale) {
623623
advertised = Locale.KOREAN;
624624
}
625625
} else if (locale.getLanguage().equals("th")) {
626-
if (locator.isLocaleAvailable(new Locale("th", "TH"))) {
627-
advertised = new Locale("th", "TH");
628-
} else if (locator.isLocaleAvailable(new Locale("th"))) {
629-
advertised = new Locale("th");
626+
if (locator.isLocaleAvailable(Locale.of("th", "TH"))) {
627+
advertised = Locale.of("th", "TH");
628+
} else if (locator.isLocaleAvailable(Locale.of("th"))) {
629+
advertised = Locale.of("th");
630630
}
631631
}
632632

‎src/java.desktop/share/classes/sun/font/SunFontManager.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2022, 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
@@ -3466,7 +3466,7 @@ public Locale run() {
34663466
String language = System.getProperty("user.language", "en");
34673467
String country = System.getProperty("user.country","");
34683468
String variant = System.getProperty("user.variant","");
3469-
return new Locale(language, country, variant);
3469+
return Locale.of(language, country, variant);
34703470
}
34713471
});
34723472
}

‎src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/I18n.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public static synchronized void init(String languageCode, String countryCode) {
160160
I18n.resourceBundle =
161161
ResourceBundle.getBundle(
162162
Constants.exceptionMessagesResourceBundleBase,
163-
new Locale(languageCode, countryCode)
163+
Locale.of(languageCode, countryCode)
164164
);
165165
alreadyInitialized = true;
166166
}

‎src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/CollatorFactoryBase.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public CollatorFactoryBase() {
3838
}
3939

4040
public Collator getCollator(String lang, String country) {
41-
return Collator.getInstance(new Locale(lang, country));
41+
return Collator.getInstance(Locale.of(lang, country));
4242
}
4343

4444
public Collator getCollator(Locale locale) {

‎src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/datatype/XMLGregorianCalendarImpl.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2022, 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
@@ -2425,12 +2425,12 @@ private Locale getDefaultLocale() {
24252425
if (lang != null) {
24262426
if (country != null) {
24272427
if (variant != null) {
2428-
locale = new Locale(lang, country, variant);
2428+
locale = Locale.of(lang, country, variant);
24292429
} else {
2430-
locale = new Locale(lang, country);
2430+
locale = Locale.of(lang, country);
24312431
}
24322432
} else {
2433-
locale = new Locale(lang);
2433+
locale = Locale.of(lang);
24342434
}
24352435
}
24362436
if (locale == null) {

‎src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/LocaleUtility.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static Locale langToLocale(String lang) {
7878
variant = EMPTY_STRING;
7979
}
8080

81-
return new Locale(language, country, variant );
81+
return Locale.of(language, country, variant);
8282
}
8383

8484

‎src/java.xml/share/classes/jdk/xml/internal/SecuritySupport.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, 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
@@ -275,7 +275,7 @@ public static ResourceBundle getResourceBundle(final String bundle, final Locale
275275
return ResourceBundle.getBundle(bundle, locale);
276276
} catch (MissingResourceException e) {
277277
try {
278-
return ResourceBundle.getBundle(bundle, new Locale("en", "US"));
278+
return ResourceBundle.getBundle(bundle, Locale.US);
279279
} catch (MissingResourceException e2) {
280280
throw new MissingResourceException(
281281
"Could not load any resource bundle by " + bundle, bundle, "");

‎src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/IncludeLocalesPlugin.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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
@@ -141,9 +141,9 @@ public final class IncludeLocalesPlugin extends AbstractPlugin implements Resour
141141
private static final String jaJPJPTag = "ja-JP-JP";
142142
private static final String noNONYTag = "no-NO-NY";
143143
private static final String thTHTHTag = "th-TH-TH";
144-
private static final Locale jaJPJP = new Locale("ja", "JP", "JP");
145-
private static final Locale noNONY = new Locale("no", "NO", "NY");
146-
private static final Locale thTHTH = new Locale("th", "TH", "TH");
144+
private static final Locale jaJPJP = Locale.of("ja", "JP", "JP");
145+
private static final Locale noNONY = Locale.of("no", "NO", "NY");
146+
private static final Locale thTHTH = Locale.of("th", "TH", "TH");
147147

148148
public IncludeLocalesPlugin() {
149149
super("include-locales");

‎test/jdk/java/util/Locale/TestOf.java

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
/*
2+
* Copyright (c) 2022, 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+
* @test
25+
* @bug 8282819
26+
* @summary Unit tests for Locale.of() method. Those tests check the equality
27+
* of obtained objects with ones that are gotten from other means with both
28+
* well-formed and ill-formed arguments. Also checks the possible NPEs
29+
* for error cases.
30+
* @run testng TestOf
31+
*/
32+
import static org.testng.Assert.assertEquals;
33+
import static org.testng.Assert.assertThrows;
34+
35+
import java.util.Locale;
36+
37+
import org.testng.annotations.Test;
38+
import org.testng.annotations.DataProvider;
39+
40+
@SuppressWarnings("deprecation")
41+
@Test
42+
public class TestOf {
43+
44+
@DataProvider
45+
public Object[][] data_1Arg() {
46+
return new Object[][]{
47+
// well-formed
48+
{Locale.ENGLISH, "en"},
49+
{Locale.JAPANESE, "ja"},
50+
51+
// ill-formed
52+
{Locale.ROOT, ""},
53+
{new Locale("a"), "a"},
54+
{new Locale("xxxxxxxxxx"), "xxxxxxxxxx"},
55+
};
56+
}
57+
58+
@DataProvider
59+
public Object[][] data_2Args() {
60+
return new Object[][]{
61+
// well-formed
62+
{Locale.US, "en", "US"},
63+
{Locale.JAPAN, "ja", "JP"},
64+
65+
// ill-formed
66+
{new Locale("", "US"), "", "US"},
67+
{new Locale("a", "b"), "a", "b"},
68+
{new Locale("xxxxxxxxxx", "yyyyyyyyyy"), "xxxxxxxxxx", "yyyyyyyyyy"},
69+
};
70+
}
71+
72+
@DataProvider
73+
public Object[][] data_3Args() {
74+
return new Object[][]{
75+
// well-formed
76+
{Locale.forLanguageTag("en-US-POSIX"), "en", "US", "POSIX"},
77+
{Locale.forLanguageTag("ja-JP-POSIX"), "ja", "JP", "POSIX"},
78+
79+
// ill-formed
80+
{new Locale("", "", "POSIX"), "", "", "POSIX"},
81+
{new Locale("a", "b", "c"), "a", "b", "c"},
82+
{new Locale("xxxxxxxxxx", "yyyyyyyyyy", "zzzzzzzzzz"),
83+
"xxxxxxxxxx", "yyyyyyyyyy", "zzzzzzzzzz"},
84+
{new Locale("ja", "JP", "JP"), "ja", "JP", "JP"},
85+
{new Locale("th", "TH", "TH"), "th", "TH", "TH"},
86+
{new Locale("no", "NO", "NY"), "no", "NO", "NY"},
87+
};
88+
}
89+
90+
@Test (dataProvider = "data_1Arg")
91+
public void test_1Arg(Locale expected, String lang) {
92+
assertEquals(Locale.of(lang), expected);
93+
}
94+
95+
@Test (dataProvider = "data_2Args")
96+
public void test_2Args(Locale expected, String lang, String ctry) {
97+
assertEquals(Locale.of(lang, ctry), expected);
98+
}
99+
100+
@Test (dataProvider = "data_3Args")
101+
public void test_3Args(Locale expected, String lang, String ctry, String vrnt) {
102+
assertEquals(Locale.of(lang, ctry, vrnt), expected);
103+
}
104+
105+
@Test
106+
public void test_NPE() {
107+
assertThrows(NullPointerException.class, () -> Locale.of(null));
108+
assertThrows(NullPointerException.class, () -> Locale.of("", null));
109+
assertThrows(NullPointerException.class, () -> Locale.of("", "", null));
110+
}
111+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 5, 2022

@openjdk-notifier[bot]
Please sign in to comment.