mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
9 lines
224 B
Java
9 lines
224 B
Java
// "Fix all 'Simplify stream API call chains' problems in file" "false"
|
|
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
public void testToArray(List<String> data) {
|
|
Object[] array = data.stream().map(x -> x).to<caret>Array();
|
|
}
|
|
} |