We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c5032d commit 52a05c2Copy full SHA for 52a05c2
unicodetools/src/main/java/org/unicode/props/PropertyParsingInfo.java
@@ -1477,6 +1477,9 @@ private static void parseFields(
1477
merger = new PropertyUtilities.Overrider();
1478
}
1479
if (indexUnicodeProperties.ucdVersion == VersionInfo.UNICODE_1_1_0) {
1480
+ if (propInfo.property.getShortName().startsWith("cjk") && value.equals("*")) {
1481
+ continue;
1482
+ }
1483
// Some CJKXREF fields combine multiple Unihan properties.
1484
if (Pattern.matches("k(GB|Jis|KSC)[0-9]|kIBMJapan", propInfo.property.name())) {
1485
String[] valueParts = value.split("-");
0 commit comments