Adding #toString to Parameters (#653)

This commit is contained in:
stefan
2020-12-12 19:58:31 +01:00
parent ee7a65531f
commit 9e9797c326

View File

@@ -61,4 +61,10 @@ public class Parameters {
Objects.equals(remoteHost, other.remoteHost) && remotePort == other.remotePort; Objects.equals(remoteHost, other.remoteHost) && remotePort == other.remotePort;
} }
@Override
public String toString() {
return "Parameters [localHost=" + localHost + ", localPort=" + localPort + ", "+
"remoteHost=" + remoteHost + ", remotePort=" + remotePort + "]";
}
} }