Added toString() method to TransportId.

This commit is contained in:
akwizgran
2016-03-22 16:07:20 +00:00
parent 31f6c0bf50
commit 65316414ea

View File

@@ -34,4 +34,9 @@ public class TransportId {
public int hashCode() {
return id.hashCode();
}
@Override
public String toString() {
return id;
}
}