-1
votes
When overriding equals in Java, why does it not work to use a parameter other than Object?
You're assuming that the contains() method in List knows the type of the object at runtime, which is incorrect.
Because of erasure, List<MyClass> …
