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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2002-06-29 07:36:15 +0400
committerMartin Baulig <martin@novell.com>2002-06-29 07:36:15 +0400
commitfb53523db80aa6c464f951e940c0368c3ef0d115 (patch)
tree52bbebcbcf61a7a3d77aaddbd58cd85e73456709 /mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs
parent6a2255bf98f055084c7cc7560635d8040e06f8c5 (diff)
2002-06-29 Martin Baulig <martin@gnome.org>
* AsymmetricAlgorithm.cs: Removed a duplicate semicolon to make it compile. * *.cs (Create (string)): Don't call the non-args version of Create(), duplicate their contents here. [FIXME: I was too lazy to hunt this bug down in mcs and it was the last one which prevented us from compiling corlib.] svn path=/trunk/mcs/; revision=5498
Diffstat (limited to 'mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs')
-rwxr-xr-xmcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs b/mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs
index e0f57333bab..7910e6e8b8c 100755
--- a/mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs
+++ b/mcs/class/corlib/System.Security.Cryptography/AsymmetricAlgorithm.cs
@@ -91,7 +91,7 @@ namespace System.Security.Cryptography {
/// Creates the default implementation of the default asymmetric algorithm (RSA).
/// </summary>
public static AsymmetricAlgorithm Create () {
- return RSA.Create();;
+ return RSA.Create();
}
/// <summary>