Author: jbevain
Date: 2005-08-19 14:29:07 -0400 (Fri, 19 Aug 2005)
New Revision: 48567

Modified:
   trunk/mcs/class/System/System.Collections.Specialized/ChangeLog
   
trunk/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
Log:
2005-08-19  Jb Evain  <[EMAIL PROTECTED]>

        * NameObjectCollectionBase (GetEnumerator):
                Remove the virtual modifier.


Modified: trunk/mcs/class/System/System.Collections.Specialized/ChangeLog
===================================================================
--- trunk/mcs/class/System/System.Collections.Specialized/ChangeLog     
2005-08-19 18:23:12 UTC (rev 48566)
+++ trunk/mcs/class/System/System.Collections.Specialized/ChangeLog     
2005-08-19 18:29:07 UTC (rev 48567)
@@ -1,3 +1,8 @@
+2005-08-19  Jb Evain  <[EMAIL PROTECTED]>
+
+       * NameObjectCollectionBase (GetEnumerator):
+               Remove the virtual modifier.
+
 2005-08-03  Raja R Harinath  <[EMAIL PROTECTED]>
 
        * ListDictionary.cs: Rewrite to reduce key comparison overhead.

Modified: 
trunk/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
===================================================================
--- 
trunk/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
   2005-08-19 18:23:12 UTC (rev 48566)
+++ 
trunk/mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs
   2005-08-19 18:29:07 UTC (rev 48567)
@@ -275,7 +275,7 @@
                /// <remark>This enumerator returns the keys of the collection 
as strings.</remark>
                /// </summary>
                /// <returns></returns>
-               public virtual IEnumerator GetEnumerator()
+               public IEnumerator GetEnumerator()
                {
                        return new _KeysEnumerator(this);
                }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to