MCPcopy Create free account
hub / github.com/Garten/sourcecraft / equals

Method equals

src/main/World.java:55–62  ·  view source on GitHub ↗
(Object another)

Source from the content-addressed store, hash-verified

53 }
54
55 @Override
56 public boolean equals(Object another) {
57 if (another instanceof World == false) {
58 return false;
59 }
60 World anotherWorld = (World) another;
61 return this.name.equals(anotherWorld.name);
62 }
63
64 public ImageIcon getIcon() {
65 if (this.icon == null) {

Callers 9

getPlaceMethod · 0.45
getGameMethod · 0.45
getConvertOptionMethod · 0.45
setWindowPosXMethod · 0.45
setWindowPosYMethod · 0.45
mainMethod · 0.45
initMethod · 0.45
loadAddablesMethod · 0.45
isSteamPathMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected