Skip to content

Commit

Permalink
Allow to override containsKey method
Browse files Browse the repository at this point in the history
Allows to provide one's own implemenation.

Results from metafacture#416 (comment).
  • Loading branch information
dr0i committed Nov 8, 2021
1 parent 9d10a70 commit d753411
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public final boolean isEmpty() {
}

@Override
public final boolean containsKey(final Object key) {
public boolean containsKey(final Object key) {
return get(key) != null;
}

Expand Down

0 comments on commit d753411

Please sign in to comment.