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
public String toString() {
return "DecryptedMsgWithPubKey{" +
", message=" + message +
"message=" + message +
", signaturePubKey.hashCode()=" + signaturePubKey.hashCode() +
'}';
}