aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/Locale.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-10-22 17:14:29 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-10-22 17:14:29 +0000
commit0460023ee24e681de8ca5df2353065bcfc2bec84 (patch)
tree81b31b0486891970a421212090c68947039d0701 /libjava/java/util/Locale.java
parent471854f82a8ac6adc65c32232877b1f1fb0e82d0 (diff)
downloadgcc-0460023ee24e681de8ca5df2353065bcfc2bec84.zip
gcc-0460023ee24e681de8ca5df2353065bcfc2bec84.tar.gz
gcc-0460023ee24e681de8ca5df2353065bcfc2bec84.tar.bz2
2004-10-22 Michael Koch <konqueror@gmx.de>
* java/lang/Math.java * java/lang/StackTraceElement.java * java/nio/Buffer.java * java/nio/ByteBuffer.java * java/nio/CharBuffer.java * java/nio/DoubleBuffer.java * java/nio/FloatBuffer.java * java/nio/IntBuffer.java * java/nio/LongBuffer.java * java/nio/ShortBuffer.java * java/nio/charset/Charset.java * java/rmi/server/RMIClassLoader.java * java/rmi/server/RMISocketFactory.java * java/security/Policy.java * java/text/ChoiceFormat.java * java/text/CollationElementIterator.java * java/text/DateFormat.java * java/text/DecimalFormat.java * java/text/DecimalFormatSymbols.java * java/text/MessageFormat.java * java/text/NumberFormat.java * java/text/RuleBasedCollator.java * java/text/SimpleDateFormat.java * java/util/BitSet.java * java/util/Calendar.java * java/util/Collections.java * java/util/IdentityHashMap.java * java/util/Locale.java * java/util/TreeMap.java * java/util/logging/LogRecord.java * java/util/logging/XMLFormatter.java * java/util/prefs/AbstractPreferences.java * java/util/prefs/Preferences.java * javax/crypto/interfaces/DHPrivateKey.java * javax/crypto/interfaces/DHPublicKey.java * javax/crypto/interfaces/PBEKey.java * javax/net/ssl/HandshakeCompletedEvent.java * javax/security/auth/Subject.java From-SVN: r89454
Diffstat (limited to 'libjava/java/util/Locale.java')
-rw-r--r--libjava/java/util/Locale.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/util/Locale.java b/libjava/java/util/Locale.java
index 4e88839..54fd097 100644
--- a/libjava/java/util/Locale.java
+++ b/libjava/java/util/Locale.java
@@ -416,7 +416,7 @@ public final class Locale implements Serializable, Cloneable
* @return the string representation of this Locale
* @see #getDisplayName()
*/
- public final String toString()
+ public String toString()
{
if (language.length() == 0 && country.length() == 0)
return "";
@@ -522,7 +522,7 @@ public final class Locale implements Serializable, Cloneable
* @return the language name of this locale localized to the default locale,
* with the ISO code as backup
*/
- public final String getDisplayLanguage()
+ public String getDisplayLanguage()
{
return getDisplayLanguage(defaultLocale);
}
@@ -560,7 +560,7 @@ public final class Locale implements Serializable, Cloneable
* @return the country name of this locale localized to the given locale,
* with the ISO code as backup
*/
- public final String getDisplayCountry()
+ public String getDisplayCountry()
{
return getDisplayCountry(defaultLocale);
}
@@ -598,7 +598,7 @@ public final class Locale implements Serializable, Cloneable
* @return the variant code of this locale localized to the given locale,
* with the ISO code as backup
*/
- public final String getDisplayVariant()
+ public String getDisplayVariant()
{
return getDisplayVariant(defaultLocale);
}
@@ -637,7 +637,7 @@ public final class Locale implements Serializable, Cloneable
*
* @return String version of this locale, suitable for display to the user
*/
- public final String getDisplayName()
+ public String getDisplayName()
{
return getDisplayName(defaultLocale);
}