1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/cms/CMSSignedHelper.cs b/crypto/src/cms/CMSSignedHelper.cs
index 37fefe140..8f2a92147 100644
--- a/crypto/src/cms/CMSSignedHelper.cs
+++ b/crypto/src/cms/CMSSignedHelper.cs
@@ -187,7 +187,7 @@ namespace Org.BouncyCastle.Cms
{
return DigestUtilities.GetDigest(algorithm);
}
- catch (SecurityUtilityException e)
+ catch (SecurityUtilityException)
{
// This is probably superfluous on C#, since no provider infrastructure,
// assuming DigestUtilities already knows all the aliases
@@ -196,7 +196,7 @@ namespace Org.BouncyCastle.Cms
try { return DigestUtilities.GetDigest(alias); }
catch (SecurityUtilityException) {}
}
- throw e;
+ throw;
}
}
|