Files

14 lines
299 B
Java

// "Delete redundant 'switch' branch" "GENERIC_ERROR_OR_WARNING"
class C {
void foo(int n) {
switch (n) {
case 2:
bar("B");
break;
default:
bar("A");
break;
}
}
void bar(String s){}
}