You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/07/08 08:30:04 UTC

svn commit: r792049 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java

Author: bayard
Date: Wed Jul  8 06:30:04 2009
New Revision: 792049

URL: http://svn.apache.org/viewvc?rev=792049&view=rev
Log:
synchronized removed from availableLocaleSet per LANG-488

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java?rev=792049&r1=792048&r2=792049&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/LocaleUtils.java Wed Jul  8 06:30:04 2009
@@ -221,7 +221,7 @@
      *
      * @return the unmodifiable set of available locales
      */
-    public static synchronized Set<Locale> availableLocaleSet() {
+    public static Set<Locale> availableLocaleSet() {
         if(cAvailableLocaleSet == null) { 
             initAvailableLocaleSet(); 
         }