mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-167160 Completion doesn't suggest types for parameters in lambdas in Java
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
package abcdef;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by peter on 1/27/17. ${FFF}
|
||||
*/
|
||||
public class Foo {
|
||||
void foo() {
|
||||
List<String> strings = null;
|
||||
strings.stream().anyMatch((ChSeq<caret>x) -> x.charAt(0) == 'a');
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package abcdef;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by peter on 1/27/17. ${FFF}
|
||||
*/
|
||||
public class Foo {
|
||||
void foo() {
|
||||
List<String> strings = null;
|
||||
strings.stream().anyMatch((CharSequence<caret>x) -> x.charAt(0) == 'a');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user