show/hide this revision's text 2 Clarifying

I think what's happening is that

Ok let me re-phrase.

(1)Because the compiler eliminates all information regarding to Generics . So in (erasure, see here), and (2) because you cannot override a method without the exact same signature (equals(Object)), (3) during runtime all objects inside the List are treated as Objects and not as instances of MyClass. Hence, the method that gets called is equals(Object) since this is the one that is been overwritten by your class.

Here is a good explanation.

show/hide this revision's text 1

I think what's happening is that the compiler eliminates all information regarding to Generics. So in runtime all objects inside the List are treated as Objects and not as instances of MyClass. Hence, the method that gets called is equals(Object) since this is the one that is been overwritten by your class.

Here is a good explanation.