This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit e79f81f746db910d231733dbdee03728547aed0f Author: Gary Gregory <[email protected]> AuthorDate: Fri Jul 19 11:08:08 2024 -0400 Format nits --- src/main/java/org/apache/commons/lang3/LocaleUtils.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/LocaleUtils.java b/src/main/java/org/apache/commons/lang3/LocaleUtils.java index df2f4885f..8548ba4ee 100644 --- a/src/main/java/org/apache/commons/lang3/LocaleUtils.java +++ b/src/main/java/org/apache/commons/lang3/LocaleUtils.java @@ -68,13 +68,15 @@ public class LocaleUtils { */ 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.
