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
10 lines
257 B
Java
10 lines
257 B
Java
// "Replace Collections.singleton().stream() with Stream.of()" "true-preview"
|
|
|
|
import java.util.*;
|
|
import java.util.stream.Stream;
|
|
|
|
class CollectionSingletonArrayStream {
|
|
Stream<String[]> stream(String[] args) {
|
|
return Stream.<String[]>of(args);
|
|
}
|
|
} |