mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
java completion: group fields together with local variables (IDEA-168743 , IDEA-172888)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Foo {
|
||||
String text;
|
||||
|
||||
void doSmth() {}
|
||||
|
||||
void foo(String text) {
|
||||
this.<caret>
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Foo {
|
||||
String field;
|
||||
void foo(Integer local) {
|
||||
String s = <caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user