Breaking long lines

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1065208 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-01-30 07:36:18 +00:00
parent bf42bd5d14
commit 204d18f903
1 changed files with 4 additions and 2 deletions

View File

@ -48,10 +48,12 @@ public class LocaleUtils {
private static Set<Locale> cAvailableLocaleSet; // lazily created by availableLocaleSet()
/** Unmodifiable map of language locales by country. */
private static final Map<String, List<Locale>> cLanguagesByCountry = Collections.synchronizedMap(new HashMap<String, List<Locale>>());
private static final Map<String, List<Locale>> cLanguagesByCountry =
Collections.synchronizedMap(new HashMap<String, List<Locale>>());
/** Unmodifiable map of country locales by language. */
private static final Map<String, List<Locale>> cCountriesByLanguage = Collections.synchronizedMap(new HashMap<String, List<Locale>>());
private static final Map<String, List<Locale>> cCountriesByLanguage =
Collections.synchronizedMap(new HashMap<String, List<Locale>>());
/**
* <p><code>LocaleUtils</code> instances should NOT be constructed in standard programming.