Format nits

This commit is contained in:
Gary Gregory 2024-07-19 11:08:08 -04:00
parent effb8c7d3c
commit e79f81f746

View File

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