Skip to content

Commit

Permalink
chore: Removed isOK
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Apr 27, 2024
1 parent ee3adb4 commit d824066
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ public List<KeyComparison<K>> getAll() {
return keyComparisons;
}

public boolean isOk() {
return !keyComparisons.isEmpty() && mismatches().isEmpty();
}

public List<KeyComparison<K>> mismatches() {
return keyComparisons.stream().filter(c -> c.getStatus() != Status.OK).collect(Collectors.toList());
}
Expand Down

0 comments on commit d824066

Please sign in to comment.