src/java.base/share/classes/java/text/DecimalFormatSymbols.java
changeset 53018 8bf9268df0e2
parent 48251 57148c79bd75
child 54252 83deaa8f0c8e
--- a/src/java.base/share/classes/java/text/DecimalFormatSymbols.java	Thu Dec 13 16:14:07 2018 +0100
+++ b/src/java.base/share/classes/java/text/DecimalFormatSymbols.java	Thu Dec 13 15:31:05 2018 +0100
@@ -663,7 +663,7 @@
         // Check for empty country string separately because it's a valid
         // country ID for Locale (and used for the C locale), but not a valid
         // ISO 3166 country code, and exceptions are expensive.
-        if (locale.getCountry().length() > 0) {
+        if (!locale.getCountry().isEmpty()) {
             try {
                 currency = Currency.getInstance(locale);
             } catch (IllegalArgumentException e) {