mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 19:38:50 +07:00
GitOrigin-RevId: 01bda01714863b5c174c85350542cb1c49440e42
9 lines
217 B
Java
9 lines
217 B
Java
class Test {
|
|
private String test(int[] all) {
|
|
for (int z : all) {
|
|
<selection>if (z > 5) continue;
|
|
if (z < 0) return "sample";</selection>
|
|
}
|
|
return "default";
|
|
}
|
|
} |