3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Added hashCode and equals to CraftWorld

Dieser Commit ist enthalten in:
Nathan Adams 2011-10-10 22:45:52 +01:00
Ursprung 1195944c90
Commit 7e005474b6

Datei anzeigen

@ -870,4 +870,23 @@ public class CraftWorld implements World {
}
}
}
@Override
public int hashCode() {
return getUID().hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final CraftWorld other = (CraftWorld) obj;
return this.getUID() == other.getUID();
}
}