Skip to content

Commit

Permalink
Adds test for difficult generic scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Dec 5, 2024
1 parent 0ea6453 commit 58e7e2e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,9 @@ public ArrayMapContainerContainer(final ArrayMapContainer mapContainer) {

@Override
public final boolean equals(final Object o) {
if (!(o instanceof ArrayMapContainerContainer)) return false;
if (!(o instanceof ArrayMapContainerContainer)) {
return false;
}
final ArrayMapContainerContainer that = (ArrayMapContainerContainer) o;
return Objects.equals(mapContainer, that.mapContainer);
}
Expand Down

0 comments on commit 58e7e2e

Please sign in to comment.