I hava a generic class called ArrayBag. I want to override equals method. So i wrote
public boolean equals(T other){
} // gives error
error message: Name clash: The method equals(T) of type ArrayBag has the same erasure as equals(Object) of type Object but does not override it
@Overrideannotation too. – Michael Nov 24 '11 at 14:20