1
vote
When overriding equals in Java, why does it not work to use a parameter other than Object?
The ArrayList implementation of the contains(Object) method is bound to use Object.equals(Object) method internally, so it'll never know about your overloading of the equals(MyClass) method. Only …
