1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-14 12:49:39 +02:00

Fixed redundant dot an exception message.

This commit is contained in:
DenBond7 2023-01-23 10:02:02 +02:00
parent 67cc59efa2
commit 4e4d097ed3
No known key found for this signature in database
GPG key ID: F74FC4E6441BA8C3

View file

@ -970,7 +970,7 @@ public class OpenPgpMessageInputStream extends DecryptionStream {
LOGGER.debug("No suitable certificate for verification of signature by key " + KeyIdUtil.formatKeyId(keyId) + " found.");
inbandSignaturesWithMissingCert.add(new SignatureVerification.Failure(
new SignatureVerification(signature, null),
new SignatureValidationException("Missing verification key.")));
new SignatureValidationException("Missing verification key")));
}
}