(Object object)
| 545 | } |
| 546 | |
| 547 | @Override |
| 548 | public boolean equals(Object object) { |
| 549 | if (object == this) { |
| 550 | return true; |
| 551 | } |
| 552 | if (object instanceof MapDifference) { |
| 553 | MapDifference<?, ?> other = (MapDifference<?, ?>) object; |
| 554 | return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft()) |
| 555 | && entriesOnlyOnRight().equals(other.entriesOnlyOnRight()) |
| 556 | && entriesInCommon().equals(other.entriesInCommon()) |
| 557 | && entriesDiffering().equals(other.entriesDiffering()); |
| 558 | } |
| 559 | return false; |
| 560 | } |
| 561 | |
| 562 | @Override |
| 563 | public int hashCode() { |
nothing calls this directly
no test coverage detected