MCPcopy Create free account
hub / github.com/badvision/jace / equals

Method equals

src/main/java/jace/cheat/MemoryCell.java:81–88  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

79 }
80
81 @Override
82 public boolean equals(Object o) {
83 if (o instanceof MemoryCell) {
84 MemoryCell om = (MemoryCell) o;
85 return address == om.address || (x == om.x && y == om.y);
86 }
87 return false;
88 }
89
90 public boolean hasCounts() {
91 return hasCount.get();

Callers 2

newSearchMethod · 0.45
tickMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected