mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
335 B
Java
16 lines
335 B
Java
class Test {
|
|
String foo(int i, boolean flag) {
|
|
<selection>
|
|
String xxx = "";
|
|
if (flag) {
|
|
for (int j = 0; j < 100; j++) {
|
|
if (i == j) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
</selection>
|
|
System.out.println(xxx);
|
|
return null;
|
|
}
|
|
} |