mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
12 lines
340 B
Java
12 lines
340 B
Java
// "Fix all 'Simplify stream API call chains' problems in file" "false"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.stream.IntStream;
|
|
|
|
public class Test extends ArrayList<String> {
|
|
public void test(List<Integer> list) {
|
|
long[] arr = IntStream.range(0, list.size()).map<caret>ToLong(idx -> 5).toArray();
|
|
}
|
|
}
|