(Object object)
| 571 | } |
| 572 | |
| 573 | @Override |
| 574 | public boolean equals(Object object) { |
| 575 | if (object == this) { |
| 576 | return true; |
| 577 | } |
| 578 | if (object instanceof MapDifference) { |
| 579 | MapDifference<?, ?> other = (MapDifference<?, ?>) object; |
| 580 | return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft()) |
| 581 | && entriesOnlyOnRight().equals(other.entriesOnlyOnRight()) |
| 582 | && entriesInCommon().equals(other.entriesInCommon()) |
| 583 | && entriesDiffering().equals(other.entriesDiffering()); |
| 584 | } |
| 585 | return false; |
| 586 | } |
| 587 | |
| 588 | @Override |
| 589 | public int hashCode() { |
nothing calls this directly
no test coverage detected