mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-06 10:49:44 +01:00
Implemented equals & hashCode for UserImportData
This commit is contained in:
parent
26f64990d3
commit
d28e20bf9a
@ -276,4 +276,28 @@ public class UserImportData {
|
|||||||
return new UserImportData(name, uuid, nicknames, registered, op, banned, timesKicked, ips, worldTimes, kills, mobKills, deaths);
|
return new UserImportData(name, uuid, nicknames, registered, op, banned, timesKicked, ips, worldTimes, kills, mobKills, deaths);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object o) {
|
||||||
|
if (this == o) return true;
|
||||||
|
if (!(o instanceof UserImportData)) return false;
|
||||||
|
UserImportData that = (UserImportData) o;
|
||||||
|
return registered == that.registered &&
|
||||||
|
op == that.op &&
|
||||||
|
banned == that.banned &&
|
||||||
|
timesKicked == that.timesKicked &&
|
||||||
|
mobKills == that.mobKills &&
|
||||||
|
deaths == that.deaths &&
|
||||||
|
Objects.equals(name, that.name) &&
|
||||||
|
Objects.equals(uuid, that.uuid) &&
|
||||||
|
Objects.equals(nicknames, that.nicknames) &&
|
||||||
|
Objects.equals(ips, that.ips) &&
|
||||||
|
Objects.equals(worldTimes, that.worldTimes) &&
|
||||||
|
Objects.equals(kills, that.kills);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return Objects.hash(name, uuid, nicknames, registered, op, banned, timesKicked, ips, worldTimes, kills, mobKills, deaths);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user