mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 14:21:27 +07:00
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
8 lines
137 B
Java
8 lines
137 B
Java
// "Remove local variable 'i'" "true"
|
|
public class Main {
|
|
int test(String s) {
|
|
return switch(s) {
|
|
default -> 1;
|
|
}
|
|
}
|
|
} |