MCPcopy Create free account
hub / github.com/5zig/The-5zig-Mod / equals

Method equals

The 5zig Mod/src/eu/the5zig/mod/server/Server.java:98–111  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

96 }
97
98 @Override
99 public boolean equals(Object o) {
100 if (this == o)
101 return true;
102 if (o == null || getClass() != o.getClass())
103 return false;
104
105 Server server = (Server) o;
106
107 if (port != server.port)
108 return false;
109 return host.equals(server.host);
110
111 }
112
113 @Override
114 public String toString() {

Callers 15

getMethod · 0.45
deserializeMethod · 0.45
loadLocalesMethod · 0.45
runMethod · 0.45
downloadUpdateMethod · 0.45
unloadPluginMethod · 0.45
getLocalesMethod · 0.45
addModulesMethod · 0.45
getPluginMethod · 0.45
onPayloadReceiveMethod · 0.45
onPayloadReceiveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected