Skip to content

Commit 39a1a87

Browse files
authored
Update to CLDR version release-41-alpha0 (#174)
- fix CLDRCharacterUtility to use a full factory - per CLDR-15195 - update to 0.0.0-SNAPSHOT-e995b07a7e snapshot/2022-02-08 - CLDR release: release-41-alpha0 + fix - https://github.com/unicode-org/cldr/releases/tag/release-41-alpha0
1 parent 3f36ba3 commit 39a1a87

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<!--
3232
For CLDR versions, see https://github.com/orgs/unicode-org/packages?repo_name=cldr
3333
-->
34-
<cldr.version>0.0.0-SNAPSHOT-bfa39570be</cldr.version>
34+
<cldr.version>0.0.0-SNAPSHOT-e995b07a7e</cldr.version>
3535

3636

3737
<!-- these two set the JDK version for source and target -->

unicodetools/src/main/java/org/unicode/text/tools/CLDRCharacterUtility.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public class CLDRCharacterUtility {
1919
public static UnicodeMap<Set<String>> getCLDRCharacters() {
2020
UnicodeMap<Set<String>> result = new UnicodeMap<>();
21-
org.unicode.cldr.util.Factory factory = CLDRConfig.getInstance().getCldrFactory();
21+
org.unicode.cldr.util.Factory factory = CLDRConfig.getInstance().getFullCldrFactory();
2222
// File[] paths = { new File(CLDRPaths.MAIN_DIRECTORY)
2323
// //, new File(CLDRPaths.SEED_DIRECTORY), new File(CLDRPaths.EXEMPLARS_DIRECTORY)
2424
// };
@@ -73,4 +73,4 @@ private static UnicodeSet flatten(UnicodeSet result) {
7373
}
7474
return result2;
7575
}
76-
}
76+
}

0 commit comments

Comments
 (0)