synchronized removed from availableLocaleSet per LANG-488

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@792049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-07-08 06:30:04 +00:00
parent a4325e5559
commit 2a7a320d63
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ private static synchronized void initAvailableLocaleList() {
*
* @return the unmodifiable set of available locales
*/
public static synchronized Set<Locale> availableLocaleSet() {
public static Set<Locale> availableLocaleSet() {
if(cAvailableLocaleSet == null) {
initAvailableLocaleSet();
}