mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
16 lines
275 B
Java
16 lines
275 B
Java
// "Replace with old style 'switch' statement" "true"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
boolean x(int i) {
|
|
boolean b;
|
|
switch (i) {
|
|
case 2:
|
|
throw null;
|
|
default:
|
|
b = true;
|
|
break;
|
|
}
|
|
return b;
|
|
}
|
|
} |