Fix String format in VaultEndpoint.toString.

Fixes gh-27.
This commit is contained in:
Mark Paluch
2016-10-27 14:24:05 +02:00
parent aa4661bdc3
commit 799ab8f8dd

View File

@@ -169,6 +169,6 @@ public class VaultEndpoint implements Serializable {
@Override
public String toString() {
return String.format("%://%:%d", scheme, host, port);
return String.format("%s://%s:%d", scheme, host, port);
}
}