mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
Use "true+preview" to check preview. By default, checks whether preview is equal to the actual action result. Alternatively, previewXyz file could be supplied to assert the preview text GitOrigin-RevId: 24a7a7539466137827200458ced235dd5e2b6d0a
11 lines
260 B
Java
11 lines
260 B
Java
// "Replace with 'Arrays.stream()'" "true-preview"
|
|
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.IntStream;
|
|
|
|
class Test {
|
|
public void test(double[] array) {
|
|
Arrays.stream(array, 1, 5).collect(Collectors.toList());
|
|
}
|
|
} |