Files
2023-01-15 05:39:32 +00:00

15 lines
346 B
Java

// "Delete redundant 'switch' branch" "GENERIC_ERROR_OR_WARNING"
class Test {
void foo(String o) {
switch (o) {
case "hello":
case "bye":
System.out.println(42<caret>);
break;
default:
System.out.println(42);
break;
}
}
}