disable wrap with fixes in switch cases where only constants are accepted (IDEA-196151)

This commit is contained in:
Anna.Kozlova
2018-07-26 16:23:43 +02:00
parent e7d2931e40
commit 1479d66bc6
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,9 @@
// "Wrap using 'String.valueOf()'" "false"
public class Test {
void foo(String i) {
switch (i) {
case '<caret>0':
System.out.println(i);
}
}
}