1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-13 15:15:04 +02:00

Fixed redundant dot an exception message.

This commit is contained in:
DenBond7 2023-01-23 10:02:02 +02:00 committed by Paul Schaub
parent 67cc59efa2
commit 9f98e4ce37

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."); LOGGER.debug("No suitable certificate for verification of signature by key " + KeyIdUtil.formatKeyId(keyId) + " found.");
inbandSignaturesWithMissingCert.add(new SignatureVerification.Failure( inbandSignaturesWithMissingCert.add(new SignatureVerification.Failure(
new SignatureVerification(signature, null), new SignatureVerification(signature, null),
new SignatureValidationException("Missing verification key."))); new SignatureValidationException("Missing verification key")));
} }
} }