Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[ignore] address code review
  • Loading branch information
line-o committed Mar 28, 2024
commit fdfa9246275e2c9c0120e014768ddd096916e76e
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private static Predicate<AtomicValue> getNumericTester (final Double value) {
return throwingPredicateWrapper(v -> v instanceof NumericValue && v.toJavaObject(Double.class).equals(value));
}

private static java.util.function.Predicate<AtomicValue> getTester (final String value, final boolean caseSensitive) {
private static Predicate<AtomicValue> getTester (final String value, final boolean caseSensitive) {
if (caseSensitive) {
return throwingPredicateWrapper(v -> v instanceof StringValue && v.getStringValue().equals(value));
}
Expand Down