mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 20:45:15 +07:00
10 lines
285 B
Java
10 lines
285 B
Java
// "Fix all 'Simplify stream API call chains' problems in file" "false"
|
|
|
|
import java.util.*;
|
|
import java.util.function.*;
|
|
|
|
class Test {
|
|
public void testToArray(List<String[]> data, IntFunction<String[]> generator) {
|
|
Object[] array = data.stream().toA<caret>rray(generator);
|
|
}
|
|
} |