This commit is contained in:
Gary Gregory 2024-07-19 11:07:26 -04:00
parent 3ebaac5c02
commit effb8c7d3c

View File

@ -52,9 +52,20 @@ static class SyncAvoid {
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. */