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
1 changed files with 1 additions and 1 deletions

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")));
}
}