2001-07-09 Jeffrey Stedfast <fejj@ximian.com>
authorJeffrey Stedfast <fejj@novell.com>
Tue, 10 Jul 2001 14:43:56 +0000 (14:43 -0000)
committerJeffrey Stedfast <fejj@novell.com>
Tue, 10 Jul 2001 14:43:56 +0000 (14:43 -0000)
* Object.cs (Object::Equals): Object variable name is `o'.

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

mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/Object.cs

index e53b897c07360aa60da1196d243c3722a86e90c9..c132cc41c44b9bcc3f01a09fe7db213d9f3196b2 100644 (file)
@@ -1,3 +1,7 @@
+2001-07-09  Jeffrey Stedfast  <fejj@ximian.com>
+
+       * Object.cs (Object::Equals): Object variable name is `o'.
+
 2001-07-06  Joe Shaw  <joe@ximian.com>
 
        * Int16.cs, Int32.cs, Int64.cs, UInt16.cs, UInt32.cs, UInt64.cs:
index 7bd3e8b9ed663ea52914e14d61a80ad12248561f..928907ae532ecae0d644a5dd9a6f750470f2a4ca 100644 (file)
@@ -19,9 +19,9 @@ namespace System {
                //   Compares this object to the specified object.
                //   Returns true if they are equal, false otherwise.
                // </summary>
-               public virtual bool Equals (object)
+               public virtual bool Equals (object o)
                {
-                       return this == object;
+                       return this == o;
                }
 
                // <summary>