6
votes
3answers
759 views
Can unchecked warnings be avoided when overriding a method with raw type parameters?
I am extending a class defined in a library which I cannot change:
public class Parent
{
public void init(Map properties) { ... }
}
If I am defining a class 'Child' that extends Parent and I am …
3
votes
4answers
511 views
Is it good practice to replace Class with Class<? extends Object> to avoid warnings?
In a bunch o' places in my code, I have something like this:
public Class mySpecialMethod() {
return MySpecialClass.class;
}
which causes the warning
Class is a raw type. References to
…
