mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 19:49:44 +07:00
java basic completion: move chain suggestions (IDEA-145958) lower, restore static-after-instance on second invocation
GitOrigin-RevId: ca35702dc948b2f77168e21e268b8b48abb7e25a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a209cdf062
commit
cd53bdd099
+1
-1
@@ -1,6 +1,6 @@
|
||||
public class KeyVO {
|
||||
{
|
||||
this.fo<caret>
|
||||
this.<caret>
|
||||
}
|
||||
static void foo() {}
|
||||
}
|
||||
+2
-3
@@ -4,10 +4,9 @@ class Bar {
|
||||
class Goo {}
|
||||
|
||||
class Foo {
|
||||
Bar getBar() {}
|
||||
|
||||
Bar bar() {}
|
||||
|
||||
void x(Goo unmatched) {
|
||||
Goo g = getG<caret>
|
||||
Goo g = ba<caret>
|
||||
}
|
||||
}
|
||||
+2
-3
@@ -4,10 +4,9 @@ class Bar {
|
||||
class Goo {}
|
||||
|
||||
class Foo {
|
||||
Bar getBar() {}
|
||||
|
||||
Bar bar() {}
|
||||
|
||||
void x(Goo unmatched) {
|
||||
Goo g = getBar().getGoo();<caret>
|
||||
Goo g = bar().getGoo();<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user