recursive getLambdaParameterType problem: don't check nested lambda body for unchecked exceptions, that's impossible anyway (IDEA-146161)

This commit is contained in:
Anna Kozlova
2015-10-09 17:17:09 +02:00
parent af64a71f84
commit 773e192f1a
4 changed files with 36 additions and 2 deletions
@@ -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();
}
}
@@ -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>());
}