java completion: don't suggest a variable name after a misspelled keyword (IDEA-215451)

GitOrigin-RevId: 2224a09bdaaee8026dc1ec97cb8884366a26abfd
This commit is contained in:
peter
2019-06-16 07:33:45 +03:00
committed by intellij-monorepo-bot
parent 16f141a0ec
commit 10ff3f3713
5 changed files with 17 additions and 4 deletions
@@ -1,5 +1,5 @@
class Foo {
void test(Object o) {
o <caret>
o <caret>x
}
}
@@ -1,4 +1,4 @@
public class MyFirstTestClassFoo {
public class Eee {
void foo(int a, Eee e<caret>){
}
@@ -1,4 +1,4 @@
public class MyFirstTestClassFoo {
public class Eee {
void foo(int a, Eee eee<caret>){
}