MCPcopy Create free account
hub / github.com/FabricMC/Matcher / equals

Method equals

src/main/java/matcher/type/Analysis.java:827–834  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

825 }
826
827 @Override
828 public boolean equals(Object obj) {
829 if (!(obj instanceof QueueElement)) return false;
830
831 QueueElement o = (QueueElement) obj;
832
833 return dstIndex == o.dstIndex && srcState.equals(o.srcState);
834 }
835
836 @Override
837 public int hashCode() {

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected