IDEA-192209 'final' modifier appeared almost in the end of autocompletion list in case of a beginning line with already defined variable

This commit is contained in:
peter
2018-05-18 09:53:00 +02:00
parent b8ba7ce04c
commit 4023a46c83
3 changed files with 28 additions and 2 deletions
@@ -0,0 +1,7 @@
class Test {
Integer find1() {};
Integer test() {
fi<caret>Integer variable = 10;
}
}