mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
8 lines
107 B
Java
8 lines
107 B
Java
// "Replace 'switch' with 'if'" "true-preview"
|
|
class Test {
|
|
void m() {
|
|
if (0 == 1) {
|
|
}
|
|
|
|
}
|
|
} |