Files
Tagir Valeev 625c1cc676 ConvertSwitchToIfIntention: fixes after review IDEA-CR-37311:
1. Do not suggest intention if `default` case is not the last one and fallthrough is possible into or out of that case
2. Generate a code-block if side-effect should be extracted to variable
2018-09-27 10:17:10 +07:00

15 lines
280 B
Java

// "Replace 'switch' with 'if'" "false"
class X {
void m(String s) {
swi<caret>tch (s) {
case "foo":
System.out.println(1);
break;
default:
System.out.println(2);
case "bar":
System.out.println(3);
break;
}
}
}