mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
java completion: improve constructor reference suggestions
show class qualified name (IDEA-182806) add navigation to the class as a result, sorting by proximity now works, and so lambdas have to be preferred explicitly
This commit is contained in:
@@ -3,6 +3,6 @@ import java.util.ArrayList;
|
||||
class B {
|
||||
static void bar(String s){}
|
||||
{
|
||||
new ArrayList<String>().forEach(<caret>);
|
||||
new ArrayList<String>().forEach(b<caret>);
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@ import java.util.List;
|
||||
class MyTest {
|
||||
|
||||
void m(List<Person> l) {
|
||||
l.stream().map(<caret>)
|
||||
l.stream().map(get<caret>)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user