mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
13 lines
285 B
Java
13 lines
285 B
Java
// "Unwrap 'switch' statement" "true"
|
|
class X {
|
|
String test(char c) {
|
|
for(int i=0; i<10; i++)
|
|
if(c == 'a') {
|
|
System.out.println("foo");
|
|
continue;
|
|
}
|
|
System.out.println("bar");
|
|
System.out.println("oops");
|
|
return "";
|
|
}
|
|
} |