Skip to content

Commit

Permalink
Merge pull request #50 from mP1/feature/mP1-walkingkooka-issues-2718-…
Browse files Browse the repository at this point in the history
…CanBeEmpty-isNotEmpty

mP1/walkingkooka#2718 CanBeEmpty#isNotEmpty
  • Loading branch information
mP1 authored Oct 30, 2024
2 parents ff01d07 + 459f1ac commit e395a98
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 e395a98

Please sign in to comment.