Skip to content

Commit b470e08

Browse files
committed
spots
1 parent 23eace7 commit b470e08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

unicodetools/src/main/java/org/unicode/props/UnicodeProperty.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,8 @@ private class MyXSymbolTable extends UnicodeSet.XSymbolTable {
952952
@Override
953953
public boolean applyPropertyAlias(
954954
String propertyName, String propertyValue, UnicodeSet result) {
955-
if ((propertyName.equals("C") || propertyName.equals("c")) && propertyValue.isEmpty()) {
955+
if ((propertyName.equals("C") || propertyName.equals("c"))
956+
&& propertyValue.isEmpty()) {
956957
// C matches isc=ISO_Comment, and we are not able to distinguish
957958
// \p{C} (=\p{General_Category=Other}) from \p{C=} (=\p{ISO_Comment=}) here.
958959
// Fall back to ICU, since this symbol table does not implement GC groupings.

0 commit comments

Comments
 (0)