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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Lebreton <sebleb@microsoft.com>2014-09-24 17:16:12 +0400
committerSebastien Lebreton <sebleb@microsoft.com>2014-09-24 17:16:12 +0400
commit247233f0ec830b455db9f3f239b3e25019c88b73 (patch)
treea910b31798fd23d4b685cf98c58b473c53eafa40 /Mono.Security.Cryptography
parentb91dfc652e6547cf7f10b17335469d4c9cec2506 (diff)
Fix compilation warning
Diffstat (limited to 'Mono.Security.Cryptography')
-rw-r--r--Mono.Security.Cryptography/CryptoConvert.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Security.Cryptography/CryptoConvert.cs b/Mono.Security.Cryptography/CryptoConvert.cs
index b3e7487..bd38900 100644
--- a/Mono.Security.Cryptography/CryptoConvert.cs
+++ b/Mono.Security.Cryptography/CryptoConvert.cs
@@ -139,7 +139,7 @@ namespace Mono.Security.Cryptography {
rsa = RSA.Create ();
rsa.ImportParameters (rsap);
}
- catch (CryptographicException ce) {
+ catch (CryptographicException) {
// this may cause problem when this code is run under
// the SYSTEM identity on Windows (e.g. ASP.NET). See
// http://bugzilla.ximian.com/show_bug.cgi?id=77559