2005-02-21 Martin Baulig <martin@ximian.com>
authorMartin Baulig <martin@novell.com>
Mon, 21 Feb 2005 19:13:17 +0000 (19:13 -0000)
committerMartin Baulig <martin@novell.com>
Mon, 21 Feb 2005 19:13:17 +0000 (19:13 -0000)
* IComparer.cs: Reverted the last change here, Equals() and
GetHashCode() have been removed a long time ago.

svn path=/trunk/mcs/; revision=41010

mcs/class/corlib/System.Collections.Generic/ChangeLog
mcs/class/corlib/System.Collections.Generic/IComparer.cs

index 9ba2a8b85cd9a096f849a2a7c6dd8b2b08c78c03..2497e6f487403bcb496dd637f260f216db4bfaf2 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-21  Martin Baulig  <martin@ximian.com>
+
+       * IComparer.cs: Reverted the last change here, Equals() and
+       GetHashCode() have been removed a long time ago.
+
 2005-02-21  Kazuki Oikawa  <kazuki@panicode.com>
 
        * IComparer.cs, IDictionary.cs: Corrected the wrong declaration.
index 2b90c5bae43dccb742917769060ea9dd2f09a839..2b4586ffcea929a0d99bfeea8dfc2c025853d16c 100644 (file)
@@ -39,8 +39,6 @@ namespace System.Collections.Generic {
        [ComVisible(false)]
        public interface IComparer<T> {
                int Compare (T x, T y);
-               bool Equals (T x, T y);
-               int GetHashCode (T obj);
        }
 }
 #endif