mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 07:20:25 +07:00
83a859546b
also, global inspection redundant suppressions made java independent (WEB-16634)
15 lines
235 B
Java
15 lines
235 B
Java
// "Remove 'unchecked' suppression" "true"
|
|
import java.util.ArrayList;
|
|
|
|
public class Test {
|
|
@SafeVarargs
|
|
static <T> void foo(T... t){
|
|
}
|
|
|
|
void foo() {
|
|
//noinspection unc<caret>hecked
|
|
foo(new ArrayList<String>());
|
|
}
|
|
}
|
|
|