mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-28 18:19:22 +07:00
11 lines
161 B
Java
11 lines
161 B
Java
class Switching {
|
|
boolean x(int i) {
|
|
switch (i) {
|
|
case 1 -> {<caret>return true;
|
|
}
|
|
default -> {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |