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 effb8c7d3c333ddfcbeb8c467d673bff866c9957 Author: Gary Gregory <[email protected]> AuthorDate: Fri Jul 19 11:07:26 2024 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/LocaleUtils.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/LocaleUtils.java b/src/main/java/org/apache/commons/lang3/LocaleUtils.java index bd6b97447..df2f4885f 100644 --- a/src/main/java/org/apache/commons/lang3/LocaleUtils.java +++ b/src/main/java/org/apache/commons/lang3/LocaleUtils.java @@ -52,9 +52,20 @@ public class LocaleUtils { AVAILABLE_LOCALE_SET = Collections.unmodifiableSet(new HashSet<>(list)); } } + + /** + * The underscore character {@code '}{@value}{@code '}. + */ private static final char UNDERSCORE = '_'; + + /** + * The undetermined language {@value}. + */ private static final String UNDETERMINED = "und"; + /** + * The dash character {@code '}{@value}{@code '}. + */ private static final char DASH = '-'; /** Concurrent map of language locales by country. */
