Android Studio does not show a compiler warning when using a raw type when referencing a generic type. Is there any way to enable this feature?
public class GenericClass<T> { } public class SpecificClass extends GenericClass { }
Eclipse usually displays the following warning: GenericClass is a raw type. References to the generic GenericClass <T> type should be parameterized.
java android-studio compiler-warnings
multiholle
source share