mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
8 lines
148 B
Java
8 lines
148 B
Java
// "Replace 'switch' with 'if'" "true-preview"
|
|
class Test {
|
|
void foo(float f) {
|
|
if (f == 0) {
|
|
System.out.println(f);
|
|
}
|
|
}
|
|
} |