mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +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
18 lines
370 B
Java
18 lines
370 B
Java
// "Replace with 'Collectors.joining'" "true-preview"
|
|
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Stream;
|
|
|
|
import static java.util.stream.Collectors.toList;
|
|
|
|
class Test {
|
|
public void test() {
|
|
/*2*/
|
|
/*1*/
|
|
Stream.of(12, 22)
|
|
.map(Object::toString) /*3*/
|
|
.collect(((Collectors.joining("\n"))) // comment?
|
|
);
|
|
|
|
}
|
|
} |