Add toString()

This commit is contained in:
filoghost 2014-12-30 13:43:25 +01:00
parent 3f9b0da4fe
commit 5efc4a5def

View File

@ -18,4 +18,9 @@ public class ServerAddress {
return port; return port;
} }
@Override
public String toString() {
return ip + ":" + port;
}
} }