diff options
Diffstat (limited to 'libjava/java/util/List.java')
-rw-r--r-- | libjava/java/util/List.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/util/List.java b/libjava/java/util/List.java index f2ee49c..a000604 100644 --- a/libjava/java/util/List.java +++ b/libjava/java/util/List.java @@ -190,7 +190,7 @@ public interface List extends Collection * @see Object#equals(Object) * @see #hashCode() */ - boolean equals(Object o); + /* boolean equals(Object o);*/ /** * Get the element at a given index in this list. @@ -288,7 +288,7 @@ public interface List extends Collection Object remove(int index); /** - * Remove the first occurrence of an object from this list (optional + * Remove the first occurence of an object from this list (optional * operation). That is, remove the first element e such that * <code>o == null ? e == null : o.equals(e)</code>. * |