Skip to content

Commit 60379b5

Browse files
committed
::
1 parent 60a2c81 commit 60379b5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

UnicodeJsps/src/main/java/org/unicode/jsp/UnicodeSetUtilities.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,7 @@ private boolean applyPropertyAlias0(
301301
propertyValue),
302302
UnicodePropertySymbolTable.Relation.geq,
303303
Comparator.nullsFirst(Comparator.naturalOrder()),
304-
(s) ->
305-
UnicodePropertySymbolTable
306-
.parseVersionInfoOrMax(s)));
304+
UnicodePropertySymbolTable::parseVersionInfoOrMax));
307305
} else {
308306
if (prop.getName().equals("General_Category")) {
309307
for (String[] coarseValue : COARSE_GENERAL_CATEGORIES) {

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,7 @@ public boolean applyPropertyAlias0(
207207
propertyValue),
208208
Relation.geq,
209209
Comparator.nullsFirst(Comparator.naturalOrder()),
210-
(s) ->
211-
UnicodePropertySymbolTable
212-
.parseVersionInfoOrMax(s)));
210+
UnicodePropertySymbolTable::parseVersionInfoOrMax));
213211
} else {
214212
set = prop.getSet(propertyValue);
215213
}

0 commit comments

Comments
 (0)