mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 14:12:44 +07:00
5a1a3450b4
GitOrigin-RevId: e72998a2f37c21d4c78096da3c45d56f1d7fd2aa
11 lines
229 B
Java
11 lines
229 B
Java
// "Replace 'switch' with 'if'" "true"
|
|
public class One {
|
|
void f1(String a) {
|
|
sw<caret>itch (a) {
|
|
case "one":
|
|
System.out.println(1);
|
|
case null, default:
|
|
System.out.println("default");
|
|
}
|
|
}
|
|
} |