MCPcopy Create free account
hub / github.com/BuildCraft/BuildCraft / equals

Method equals

common/buildcraft/lib/misc/data/Box.java:261–270  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

259 }
260
261 @Override
262 public boolean equals(Object obj) {
263 if (obj == this) return true;
264 if (obj == null) return false;
265 if (obj.getClass() != getClass()) return false;
266 Box box = (Box) obj;
267 if (!Objects.equal(min, box.min)) return false;
268 if (!Objects.equal(max, box.max)) return false;
269 return true;
270 }
271
272 @Override
273 public int hashCode() {

Callers 15

getFramePosesMethod · 0.45
hasEntityOfTypeMethod · 0.45
loadMethod · 0.45
executeMethod · 0.45
canReplaceBiomeMethod · 0.45
canReplaceBiomeMethod · 0.45
onCraftingMethod · 0.45
getDebugInfoMethod · 0.45
loadMultiBlueprintMethod · 0.45
isStateMethod · 0.45
createTaskMethod · 0.45

Calls

no outgoing calls

Tested by 2

loadMethod · 0.36
executeMethod · 0.36