mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-11 00:06:57 +07:00
8 lines
134 B
Java
8 lines
134 B
Java
// "Unwrap 'switch'" "true"
|
|
class X {
|
|
String test(char c) {
|
|
if (c == 'a') {
|
|
System.out.println("foo");
|
|
}
|
|
}
|
|
} |