mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
282 B
Java
12 lines
282 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) {
|
|
System.out.println();
|
|
return true;
|
|
}
|
|
</selection>}
|
|
return false;
|
|
}
|
|
}
|