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
path: root/mcs
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2010-03-01 22:52:45 +0300
committerJeffrey Stedfast <fejj@novell.com>2010-03-01 22:52:45 +0300
commit86f775a5132b447a2dc1b4632b2654ee77587c8f (patch)
tree09f83dee502695223f8abb712ea002eb073fbc3d /mcs
parent9a8a1b916198d754a8437336d4be73873dda7aef (diff)
reverted previous change
svn path=/trunk/mcs/; revision=152743
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Core/System.Security.Cryptography/Aes.cs2
-rw-r--r--mcs/class/System.Core/System.Security.Cryptography/ChangeLog4
2 files changed, 1 insertions, 5 deletions
diff --git a/mcs/class/System.Core/System.Security.Cryptography/Aes.cs b/mcs/class/System.Core/System.Security.Cryptography/Aes.cs
index f901f7f3ef0..3c7da47c1d2 100644
--- a/mcs/class/System.Core/System.Security.Cryptography/Aes.cs
+++ b/mcs/class/System.Core/System.Security.Cryptography/Aes.cs
@@ -42,7 +42,7 @@ namespace System.Security.Cryptography {
public static new Aes Create ()
{
- return Create ("System.Security.Cryptography.AesManaged, " + Consts.AssemblySystem_Core.ToString ());
+ return Create ("System.Security.Cryptography.AesManaged, " + Consts.AssemblySystem_Core);
}
public static new Aes Create (string algName)
diff --git a/mcs/class/System.Core/System.Security.Cryptography/ChangeLog b/mcs/class/System.Core/System.Security.Cryptography/ChangeLog
index 78be61c3357..b25f7385f60 100644
--- a/mcs/class/System.Core/System.Security.Cryptography/ChangeLog
+++ b/mcs/class/System.Core/System.Security.Cryptography/ChangeLog
@@ -1,7 +1,3 @@
-2010-03-01 Jeffrey Stedfast <fejj@novell.com>
-
- * Aes.cs: Fixed to convert the AssemblySystem_Core value to a string.
-
2009-11-12 Jb Evain <jbevain@novell.com>
* Aes.cs: avoid using an hardcoded assembly version for System.Core.