mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
cleanup: move "accessibility can be weaken"/"class in the wrong package" inspections out of the way of testing suppression
GitOrigin-RevId: b9a76fc3cc4cad29a3babcb35fac27477fd68116
This commit is contained in:
committed by
intellij-monorepo-bot
parent
bcf4653706
commit
e1e3a31e1b
@@ -1,12 +1,12 @@
|
||||
// "Remove 'unchecked' suppression" "true-preview"
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test {
|
||||
class Test {
|
||||
@SafeVarargs
|
||||
static <T> void foo(T... t){
|
||||
private static <T> void foo(T... t){
|
||||
}
|
||||
|
||||
void foo() {
|
||||
public void foo() {
|
||||
foo(new ArrayList<String>());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
// "Remove 'unchecked' suppression" "true-preview"
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test {
|
||||
class Test {
|
||||
@SafeVarargs
|
||||
static <T> void foo(T... t){
|
||||
private static <T> void foo(T... t){
|
||||
}
|
||||
|
||||
void foo() {
|
||||
public void foo() {
|
||||
//noinspection unc<caret>hecked
|
||||
foo(new ArrayList<String>());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user