diff options
Diffstat (limited to 'java/lang/Object.java')
| -rw-r--r-- | java/lang/Object.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/lang/Object.java b/java/lang/Object.java index 92b349046..c86da08c2 100644 --- a/java/lang/Object.java +++ b/java/lang/Object.java @@ -125,13 +125,13 @@ public class Object * * <p>The default implementation returns <code>this == o</code>. * - * @param o the Object to compare to + * @param obj the Object to compare to * @return whether this Object is semantically equal to another * @see #hashCode() */ - public boolean equals(Object o) + public boolean equals(Object obj) { - return this == o; + return this == obj; } /** |
