java basic completion: move chain suggestions (IDEA-145958) lower, restore static-after-instance on second invocation

GitOrigin-RevId: ca35702dc948b2f77168e21e268b8b48abb7e25a
This commit is contained in:
Peter Gromov
2020-06-15 16:56:30 +03:00
committed by intellij-monorepo-bot
parent a209cdf062
commit cd53bdd099
6 changed files with 22 additions and 11 deletions
@@ -1,6 +1,6 @@
public class KeyVO {
{
this.fo<caret>
this.<caret>
}
static void foo() {}
}
@@ -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>
}
}
@@ -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>
}
}