Merge branch 'development' into feature/override-randoms

This commit is contained in:
Jeroen Ketelaar
2018-09-09 18:23:55 -05:00
committed by GitHub
@@ -37,6 +37,9 @@ public class ServerDescription implements Comparable<ServerDescription> {
@Override
public int compareTo(ServerDescription o) {
if (this.getServerName().equalsIgnoreCase(o.getServerName())) {
return 1;
}
return this.getServerName().compareTo(o.getServerName());
}