OSDN Git Service

Use DecimalFormatSymbols' new default constructor for speed.
[android-x86/dalvik.git] / libcore / text / src / main / java / java / text / DecimalFormatSymbols.java
index 6d1dcde..28e9603 100644 (file)
@@ -48,7 +48,7 @@ public final class DecimalFormatSymbols implements Cloneable, Serializable {
             PerMill = 6, Exponent = 7, MonetaryDecimalSeparator = 8,
             MinusSign = 9;
 
-    transient char[] patternChars;
+    private transient char[] patternChars;
 
     private transient Currency currency;
 
@@ -546,8 +546,4 @@ public final class DecimalFormatSymbols implements Cloneable, Serializable {
             currency = null;
         }
     }
-    
-    Locale getLocale(){
-        return locale;
-    }
 }