mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
10 lines
183 B
Java
10 lines
183 B
Java
// "Replace with forEach" "true"
|
|
public class Main {
|
|
public void test(int[] arr) {
|
|
for(int i : a<caret>rr) {
|
|
if(i > 0) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
}
|
|
} |