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:
parent
bf42bd5d14
commit
204d18f903
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue