mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 10:51:25 +07:00
recursive getLambdaParameterType problem: don't check nested lambda body for unchecked exceptions, that's impossible anyway (IDEA-146161)
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
import java.util.Optional;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
class Test {
|
||||
|
||||
Optional<String> getOptionalAssigneeId() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public void getById(Optional<Test> join, CompletableFuture<Void> voidCompletableFuture) {
|
||||
voidCompletableFuture.thenApply(v -> {
|
||||
return join.map(caze -> {
|
||||
caze.getOptionalAssigneeId().map(id -> {
|
||||
String s = id;
|
||||
return null;
|
||||
});
|
||||
return null;
|
||||
});
|
||||
}).join();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -8,7 +8,7 @@ class Test {
|
||||
IntStream mi = sp.map(Inner::foo);
|
||||
Stream<Integer> mI = sp.map(Inner::fooBoxed);
|
||||
|
||||
IntStream li = sp.<error descr="Ambiguous method call: both 'Stream.map(Function<? super Inner, ? extends R>)' and 'Stream.map(IntFunction<? super Inner>)' match">map</error>(inner->inner.<error descr="Cannot resolve method 'foo()'">foo</error>());
|
||||
IntStream li = sp.<error descr="Cannot resolve method 'map(<lambda expression>)'">map</error>(inner->inner.<error descr="Cannot resolve method 'foo()'">foo</error>());
|
||||
Stream<Integer> lI = sp.<error descr="Ambiguous method call: both 'Stream.map(Function<? super Inner, ? extends Integer>)' and 'Stream.map(IntFunction<? super Inner>)' match">map</error>(inner -> inner.<error descr="Cannot resolve method 'fooBoxed()'">fooBoxed</error>());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user