This commit is contained in:
dev
2009-12-13 09:24:25 +00:00
parent 6b8dffc401
commit e87ff25ef6

View File

@ -306,6 +306,10 @@ public class TunnelRenderer {
String lc = this.comm.getCountry(l);
String rc = this.comm.getCountry(r);
// make them non-null
lc = (lc == null) ? "zzzz" : lc;
rc = (rc == null) ? "zzzz" : rc;
// let String handle the rest
return lc.compareTo(rc);
}