MCPcopy Index your code
hub / github.com/clojure/clojure / equals

Method equals

src/jvm/clojure/asm/commons/Method.java:250–257  ·  view source on GitHub ↗
(final Object other)

Source from the content-addressed store, hash-verified

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() {

Callers 2

getDescriptorMethod · 0.45
checkCastMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected