blob: 132822279ce4d8049e302a685de171b2e50116e3 [file] [log] [blame]
// "Replace 'switch' with 'if'" "true"
class Test {
void foo(float f) {
if (f == 0) {
System.out.println(f);
}
}
}