mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 00:03:37 +07:00
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
9 lines
141 B
Java
9 lines
141 B
Java
// "Remove local variable 'i'" "true"
|
|
public class Main {
|
|
void test(String s) {
|
|
switch(s) {
|
|
case "foo" -> {
|
|
}
|
|
}
|
|
}
|
|
} |