Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/beforeInsideSwitch.java
2020-03-23 05:04:23 +00:00

18 lines
406 B
Java

// "Unwrap 'if' statement" "true"
class X {
public String testUnwrap(String f) {
switch (f) {
case "A":
return "A";
case "B":
if (t<caret>rue) {
return "b";
}
return "B";
case "D":
return "D";
default:
return null;
}
}
}