mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +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
14 lines
399 B
Java
14 lines
399 B
Java
// "Replace 'IntStream.range().mapToLong()' with 'Arrays.stream(intArr)'" "true-preview"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.stream.IntStream;
|
|
|
|
public class Test extends ArrayList<String> {
|
|
public void test(List<List<String>> list) {
|
|
int[] intArr = {1,2,3,4,5};
|
|
long[] longs = Arrays.stream(intArr).asLongStream().toArray();
|
|
}
|
|
}
|