(final Object other)
| 248 | } |
| 249 | |
| 250 | @Override |
| 251 | public boolean equals(final Object other) { |
| 252 | if (!(other instanceof Method)) { |
| 253 | return false; |
| 254 | } |
| 255 | Method otherMethod = (Method) other; |
| 256 | return name.equals(otherMethod.name) && descriptor.equals(otherMethod.descriptor); |
| 257 | } |
| 258 | |
| 259 | @Override |
| 260 | public int hashCode() { |
no outgoing calls
no test coverage detected