mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
do not drill inside lambda body during return statement search (IDEA-130123)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import java.util.LinkedList;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Predicate;
|
||||
|
||||
class Main {
|
||||
{
|
||||
new LinkedList<Object>().forEach((value)->{
|
||||
new LinkedList<Object>().stream().filter((c)->{
|
||||
return c == null;
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user