This commit is contained in:
Shadowrs
2018-09-01 20:11:12 +01:00
parent 097a0bdf7b
commit b4ba5efb49
@@ -37,8 +37,9 @@ public class ServerDescription implements Comparable<ServerDescription> {
@Override @Override
public int compareTo(ServerDescription o) { public int compareTo(ServerDescription o) {
if (this.getServerName().equalsIgnoreCase(o.getServerName())) if (this.getServerName().equalsIgnoreCase(o.getServerName())) {
return 1; return 1;
}
return this.getServerName().compareTo(o.getServerName()); return this.getServerName().compareTo(o.getServerName());
} }