mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
unchecked call: warning should be shown if instance method is called on raw type (IDEA-61449)
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
{
|
||||
Class foo = Object.class;
|
||||
<warning descr="Unchecked call to 'isAssignableFrom(Class<?>)' as a member of raw type 'java.lang.Class'">foo.isAssignableFrom</warning>(Object.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user