mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 14:12:44 +07:00
5a1a3450b4
GitOrigin-RevId: e72998a2f37c21d4c78096da3c45d56f1d7fd2aa
10 lines
195 B
Java
10 lines
195 B
Java
// "Replace 'switch' with 'if'" "false"
|
|
abstract class Test {
|
|
abstract Object getObject();
|
|
|
|
void foo() {
|
|
<caret>switch (o) {
|
|
case default -> System.out.println("hello");
|
|
}
|
|
}
|
|
} |