Bump pgpainless-core to 1.5.6

This commit is contained in:
Paul Schaub 2023-07-07 12:10:18 +02:00
parent 3f4fddfa7b
commit 5b44f91ffb
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 1 additions and 5 deletions

View file

@ -4,7 +4,6 @@
package pgp.cert_d.cli.commands;
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPPublicKeyRing;
import org.bouncycastle.openpgp.PGPPublicKeyRingCollection;
import org.pgpainless.PGPainless;
@ -46,9 +45,6 @@ public class Import implements Runnable {
} catch (BadDataException e) {
LOGGER.error("Certificate contains bad data.", e);
System.exit(-1);
} catch (PGPException e) {
LOGGER.error("PGP Exception.", e);
System.exit(-1);
}
}
}