mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: c4db6507c258e5611f6d47b9373a0c2531802345
8 lines
215 B
Java
8 lines
215 B
Java
import java.util.Arrays;
|
|
|
|
// "Collapse loop with stream 'forEach()'" "true-preview"
|
|
public class Main {
|
|
public void test(int[] arr) {
|
|
Arrays.stream(arr).filter(i -> i > 0).forEach(System.out::println);
|
|
}
|
|
} |