Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2013-05-25 07:39:47 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2013-05-25 07:39:47 +0400
commitc524bddacf8901b89c049ca40ba8fc7bfa7c0895 (patch)
tree0df3f59395455297280b16c9f72cbc38125aaf7c
parentca3db90c40693e8bff67671539d00e208ce9cba1 (diff)
removed unecessary exception
-rw-r--r--src/main/java/org/bouncycastle/openpgp/PGPSecretKey.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/bouncycastle/openpgp/PGPSecretKey.java b/src/main/java/org/bouncycastle/openpgp/PGPSecretKey.java
index 58643a78..0bab60ce 100644
--- a/src/main/java/org/bouncycastle/openpgp/PGPSecretKey.java
+++ b/src/main/java/org/bouncycastle/openpgp/PGPSecretKey.java
@@ -189,7 +189,7 @@ public class PGPSecretKey
PGPSignatureSubpacketVector unhashedPcks,
PGPContentSignerBuilder certificationSignerBuilder,
PBESecretKeyEncryptor keyEncryptor)
- throws PGPException, NoSuchProviderException
+ throws PGPException
{
this(certificationLevel, keyPair, id, null, hashedPcks, unhashedPcks, certificationSignerBuilder, keyEncryptor);
}