mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
GitOrigin-RevId: f0de0aee91d2b41e1ebb6e7a815851cbbf5b8447
12 lines
234 B
Java
12 lines
234 B
Java
// "Replace with old style 'switch' statement" "true"
|
|
|
|
class CaseNullDefault {
|
|
void bar(Object o) {
|
|
switch (o) {
|
|
case null:
|
|
default:
|
|
System.out.println("1");
|
|
break;
|
|
}
|
|
}
|
|
} |