disable wrap with Integer.parseInt for null type (IDEA-164942)

This commit is contained in:
Anna Kozlova
2018-06-18 19:48:11 +03:00
parent 3f970d976e
commit f6853fecd7
2 changed files with 10 additions and 2 deletions
@@ -0,0 +1,8 @@
// "Wrap using 'Integer.parseInt()'" "false"
public class Test {
void ba() {
fa(<caret>null);
}
void fa(int... i){}
}