redundant suppression: fix alternative id check (IDEA-227827)

GitOrigin-RevId: b80fe1fcc492f90f26bfd6f337d1c6947820e461
This commit is contained in:
Anna Kozlova
2019-11-28 20:32:03 +00:00
committed by intellij-monorepo-bot
parent e882ed1e4f
commit 1bb1545bf7
2 changed files with 21 additions and 2 deletions
@@ -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);
}
}