mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
testdata for IDEA-127124 comment
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
class Test {
|
||||
private static class Thing {
|
||||
final String val;
|
||||
public Thing(String val) {
|
||||
this.val = val;
|
||||
}
|
||||
}
|
||||
|
||||
public static Optional<List<String>> highlights() {
|
||||
return Optional.of(Collections.singletonList(new Thing("Hello")))
|
||||
.map(l -> l
|
||||
.stream()
|
||||
.map(t -> t.val + " world!")
|
||||
.collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
public static Optional<List<String>> works() {
|
||||
return Optional.of(Collections.singletonList(new Thing("Hello")))
|
||||
.map(l -> l
|
||||
.stream()
|
||||
.map(t -> t.val + " world!")
|
||||
.collect(Collectors.toList()));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user