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:
Alexey Kudravtsev
2023-10-10 15:10:25 +02:00
committed by intellij-monorepo-bot
parent bcf4653706
commit e1e3a31e1b
2 changed files with 6 additions and 6 deletions

View File

@@ -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>());
}
}

View File

@@ -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>());
}