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 23eace7 commit b470e08Copy full SHA for b470e08
unicodetools/src/main/java/org/unicode/props/UnicodeProperty.java
@@ -952,7 +952,8 @@ private class MyXSymbolTable extends UnicodeSet.XSymbolTable {
952
@Override
953
public boolean applyPropertyAlias(
954
String propertyName, String propertyValue, UnicodeSet result) {
955
- if ((propertyName.equals("C") || propertyName.equals("c")) && propertyValue.isEmpty()) {
+ if ((propertyName.equals("C") || propertyName.equals("c"))
956
+ && propertyValue.isEmpty()) {
957
// C matches isc=ISO_Comment, and we are not able to distinguish
958
// \p{C} (=\p{General_Category=Other}) from \p{C=} (=\p{ISO_Comment=}) here.
959
// Fall back to ICU, since this symbol table does not implement GC groupings.
0 commit comments