summaryrefslogtreecommitdiff
path: root/java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java')
-rw-r--r--java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java b/java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java
index 168d5444ca71..0ccd769911c3 100644
--- a/java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java
+++ b/java/java-impl/src/com/intellij/codeInsight/lookup/PackageLookupItem.java
@@ -34,7 +34,7 @@ class PackageLookupItem extends LookupItem<PsiPackage> {
public void handleInsert(InsertionContext context) {
super.handleInsert(context);
if (getTailType() == TailType.DOT || context.getCompletionChar() == '.') {
- AutoPopupController.getInstance(context.getProject()).scheduleAutoPopup(context.getEditor(), null);
+ AutoPopupController.getInstance(context.getProject()).scheduleAutoPopup(context.getEditor());
}
}
}