Remove comma before first argument in string representation

This commit is contained in:
Ivan Vilata-i-Balaguer 2016-04-07 11:22:33 +02:00
parent 5a47ebbadc
commit 51059fe6a9

View file

@ -57,7 +57,7 @@ public final class DecryptedMsgWithPubKey implements Persistable {
@Override @Override
public String toString() { public String toString() {
return "DecryptedMsgWithPubKey{" + return "DecryptedMsgWithPubKey{" +
", message=" + message + "message=" + message +
", signaturePubKey.hashCode()=" + signaturePubKey.hashCode() + ", signaturePubKey.hashCode()=" + signaturePubKey.hashCode() +
'}'; '}';
} }