(Object o)
| 686 | } |
| 687 | |
| 688 | @Override |
| 689 | public boolean equals(Object o) { |
| 690 | return o == this || (null != o && this.getClass().equals(o.getClass()) && |
| 691 | ((MatchResult) o).getExactCount() == this.getExactCount() && |
| 692 | ((MatchResult) o).getAssignableCount() == this.getAssignableCount() && |
| 693 | ((MatchResult) o).getCoercibleCount() == this.getCoercibleCount() && |
| 694 | ((MatchResult) o).getVarArgsCount() == this.getVarArgsCount() && |
| 695 | ((MatchResult) o).isVarArgs() == this.isVarArgs() && |
| 696 | ((MatchResult) o).isBridge() == this.isBridge()); |
| 697 | } |
| 698 | |
| 699 | @Override |
| 700 | public int hashCode() { |
nothing calls this directly
no test coverage detected