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

15 lines
323 B
Java

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