Skip to content

Commit

Permalink
Expose ArrayFilters.isEmpty for external backends
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaldvogel committed Jul 5, 2020
1 parent 4195adc commit e924e5f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,9 @@ public static ArrayFilters empty() {
return new ArrayFilters(Collections.emptyMap());
}

private boolean isEmpty() {
return values.isEmpty();
@VisibleForExternalBackends
public boolean isEmpty() {
return getValues().isEmpty();
}

@Override
Expand Down

0 comments on commit e924e5f

Please sign in to comment.