mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
Fixes IDEA-179303 Suggest replacing Collectors.toList()/toSet() + collection constructor with Collectors.toCollection
11 lines
345 B
Java
11 lines
345 B
Java
// "Fuse 'toArray' into the Stream API chain" "true"
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
public class Test {
|
|
public String[] testToArray(String[] args) {
|
|
List<String> list = Arrays.stream(args).co<caret>llect(Collectors.toList());
|
|
return list.toArray(new String[list.size()]);
|
|
}
|
|
} |