Format nits

This commit is contained in:
Gary Gregory 2024-07-19 11:08:08 -04:00
parent effb8c7d3c
commit e79f81f746
1 changed files with 8 additions and 6 deletions

View File

@ -68,13 +68,15 @@ public class LocaleUtils {
*/ */
private static final char DASH = '-'; private static final char DASH = '-';
/** Concurrent map of language locales by country. */ /**
private static final ConcurrentMap<String, List<Locale>> cLanguagesByCountry = * Concurrent map of language locales by country.
new ConcurrentHashMap<>(); */
private static final ConcurrentMap<String, List<Locale>> cLanguagesByCountry = new ConcurrentHashMap<>();
/** Concurrent map of country locales by language. */ /**
private static final ConcurrentMap<String, List<Locale>> cCountriesByLanguage = * Concurrent map of country locales by language.
new ConcurrentHashMap<>(); */
private static final ConcurrentMap<String, List<Locale>> cCountriesByLanguage = new ConcurrentHashMap<>();
/** /**
* Obtains an unmodifiable list of installed locales. * Obtains an unmodifiable list of installed locales.