mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-16 05:47:32 +07:00
redundant suppression: fix alternative id check (IDEA-227827)
GitOrigin-RevId: b80fe1fcc492f90f26bfd6f337d1c6947820e461
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e882ed1e4f
commit
1bb1545bf7
+10
@@ -0,0 +1,10 @@
|
||||
// "Remove 'boxing' suppression" "false"
|
||||
import java.util.ArrayList;
|
||||
|
||||
class Test {
|
||||
@SuppressWarnings( {"bo<caret>xing"})
|
||||
void doSomething() {
|
||||
final Integer number = 1;
|
||||
System.out.println(number);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user