(Object o)
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public boolean equals(Object o) { |
| 73 | if (this == o) { |
| 74 | return true; |
| 75 | } |
| 76 | if (o == null || getClass() != o.getClass()) { |
| 77 | return false; |
| 78 | } |
| 79 | MethodType that = (MethodType) o; |
| 80 | return paramTypes.equals(that.paramTypes) && |
| 81 | returnType.equals(that.returnType); |
| 82 | } |
| 83 | |
| 84 | @Override |
| 85 | public int hashCode() { |
no test coverage detected