mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
unchecked warning (IDEA-99357)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class Test {
|
||||
public static void main(String[] args) {
|
||||
Foo f = new Foo();
|
||||
System.out.println(f.get());
|
||||
}
|
||||
}
|
||||
|
||||
class Foo<<warning descr="Type parameter 'T' is never used">T</warning>> {
|
||||
public <T1> T1 get() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user