(@Nullable Object object)
| 634 | } |
| 635 | |
| 636 | @Override |
| 637 | public boolean equals(@Nullable Object object) { |
| 638 | if (object instanceof MapDifference.ValueDifference) { |
| 639 | MapDifference.ValueDifference<?> that = (MapDifference.ValueDifference<?>) object; |
| 640 | return Objects.equal(this.left, that.leftValue()) |
| 641 | && Objects.equal(this.right, that.rightValue()); |
| 642 | } |
| 643 | return false; |
| 644 | } |
| 645 | |
| 646 | @Override |
| 647 | public int hashCode() { |
nothing calls this directly
no test coverage detected