Skip to content

Commit

Permalink
Merge pull request #11 from openstandia/dev
Browse files Browse the repository at this point in the history
fix: remove unused null check
  • Loading branch information
wadahiro authored Oct 19, 2022
2 parents b664199 + f0c0a51 commit 9a28921
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -745,9 +745,6 @@ private <T> Map<String, T> initIfNecessary(Map<String, T> map, Class<T> clazz) {
}

private boolean hasChange(Map<?, ?>... map) {
if (map == null) {
return true;
}
return Arrays.stream(map).anyMatch(m -> m != null && !m.isEmpty());
}
}
Expand Down

0 comments on commit 9a28921

Please sign in to comment.