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