mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 14:20:55 +07:00
8 lines
142 B
Java
8 lines
142 B
Java
// "Replace 'switch' with 'if'" "true-preview"
|
|
class Test {
|
|
void test(Object obj) {
|
|
<caret>switch (obj) {
|
|
case 1 -> {}
|
|
}
|
|
}
|
|
} |