Skip to content

Commit

Permalink
mP1/walkingkooka#2718 CanBeEmpty#isNotEmpty
Browse files Browse the repository at this point in the history
- mP1/walkingkooka#2718
- CanBeEmpty#isNotEmpty
  • Loading branch information
mP1 committed Oct 30, 2024
1 parent ff01d07 commit 459f1ac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ public final String isMethodTypeNameSuffix() {

@Override
public final Predicate<String> isMethodIgnoreMethodFilter() {
return (m) -> m.equals("isRoot") || m.equals("isEmpty");
return (m) -> m.equals("isRoot") ||
m.equals("isEmpty") ||
m.equals("isNotEmpty");
}

// TypeNameTesting..................................................................................................
Expand Down

0 comments on commit 459f1ac

Please sign in to comment.