java completion: don't delete everything if class name coincides with package (IDEA-180284)

This commit is contained in:
peter
2018-01-08 20:52:44 +01:00
parent 9d1de0c271
commit d4ab5f0efb
8 changed files with 31 additions and 18 deletions
@@ -0,0 +1,5 @@
public class Util {
int goo() {
new Apple<caret>
}
}
@@ -0,0 +1,7 @@
import Apple.Apple;
public class Util {
int goo() {
new Apple()<caret>
}
}