diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-08-20 20:43:11 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-08-20 20:43:11 +0700 |
commit | f885166aa06542aee6ec18d1d05e5e9abb062738 (patch) | |
tree | 1e3017fd1acb17843fb8d95698e6df7f0e44ea60 /crypto/src/asn1/pkcs/PrivateKeyInfo.cs | |
parent | BMA-125 Remove duplicate/wrong RIPEMD160/ECDSA entries (diff) | |
download | BouncyCastle.NET-ed25519-f885166aa06542aee6ec18d1d05e5e9abb062738.tar.xz |
Fix warning
Diffstat (limited to '')
-rw-r--r-- | crypto/src/asn1/pkcs/PrivateKeyInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/pkcs/PrivateKeyInfo.cs b/crypto/src/asn1/pkcs/PrivateKeyInfo.cs index a63595d54..404277ba6 100644 --- a/crypto/src/asn1/pkcs/PrivateKeyInfo.cs +++ b/crypto/src/asn1/pkcs/PrivateKeyInfo.cs @@ -91,7 +91,7 @@ namespace Org.BouncyCastle.Asn1.Pkcs { return ParsePrivateKey(); } - catch (IOException e) + catch (IOException) { throw new InvalidOperationException("unable to parse private key"); } |