Files
openide/java/java-tests/testData/inspection/switchExpressionMigration/beforeComments.java
Tagir Valeev 2bff999a1e [java-inspections] Better comments placement on quick-fix (IDEA-259626)
GitOrigin-RevId: ca8f1b545c9625011890bc22ed4d584cc740b400
2021-01-26 05:14:01 +00:00

28 lines
796 B
Java

// "Replace with enhanced 'switch' statement" "true"
class X {
private static void test(String... commands) {
for (String command : commands) {
swit<caret>ch (command) {
case "Say hello":
// line contains no height
System.out.printf("Hello, %s!%n", System.getProperty("user.name"));
break;
case "Exit":
// line contains no code
System.out.println("Goodbye.");
break;
case "Multiline":
// a
System.out.println("a");
// b
System.out.println("b");
// c
System.out.println("c");
break;
default: // line contains code at second position and height
System.out.println(command);
break;
}
}
}
}