mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
10 lines
228 B
Java
10 lines
228 B
Java
class Foo {
|
|
boolean bar(String[] a) {
|
|
for (int i = 0; i < a.length; i++) {<selection>
|
|
if (a[i].length() > 3 && i % 3 == 0)
|
|
return true;
|
|
</selection>}
|
|
return false;
|
|
}
|
|
}
|