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:
authorAndrew Skiba <andrews@mono-cvs.ximian.com>2006-10-05 12:39:11 +0400
committerAndrew Skiba <andrews@mono-cvs.ximian.com>2006-10-05 12:39:11 +0400
commitb3c119542a2753810544f3bf753e5dac8eb5c952 (patch)
tree35a0505579229a8ff8d8fe56611772437a75cc6f /mcs/class/System/System.Security.Cryptography.X509Certificates
parent9f251c4fc352d8f411ee01338c5f4bdc4ec6d781 (diff)
remove IEnumerable private implementation to match .Net
svn path=/trunk/mcs/; revision=66278
Diffstat (limited to 'mcs/class/System/System.Security.Cryptography.X509Certificates')
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs7
2 files changed, 6 insertions, 6 deletions
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
index 1fc522e4ef7..2e875021be5 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-05 Andrew Skiba <andrews@mainsoft.com>
+
+ * X509CertificateCollection.cs: remove IEnumerable private imple-
+ mentation to match MSDN.
+
2006-09-20 Atsushi Enomoto <atsushi@ximian.com>
* X509Certificate2.cs : in .ctor(X509Certificate) call base copy .ctor()
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs
index ed191767fc0..610321d656c 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs
@@ -37,7 +37,7 @@ using System.Security.Cryptography;
namespace System.Security.Cryptography.X509Certificates {
[Serializable]
-public class X509CertificateCollection : CollectionBase, IEnumerable {
+public class X509CertificateCollection : CollectionBase {
public X509CertificateCollection ()
{
@@ -112,11 +112,6 @@ public class X509CertificateCollection : CollectionBase, IEnumerable {
return new X509CertificateEnumerator (this);
}
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return InnerList.GetEnumerator ();
- }
-
public override int GetHashCode ()
{
return InnerList.GetHashCode ();