diff --git a/java/java-impl/src/com/intellij/codeInsight/hint/api/impls/AnnotationParameterInfoHandler.java b/java/java-impl/src/com/intellij/codeInsight/hint/api/impls/AnnotationParameterInfoHandler.java index 9646ef9983ad..e72756865767 100644 --- a/java/java-impl/src/com/intellij/codeInsight/hint/api/impls/AnnotationParameterInfoHandler.java +++ b/java/java-impl/src/com/intellij/codeInsight/hint/api/impls/AnnotationParameterInfoHandler.java @@ -30,8 +30,9 @@ import org.jetbrains.annotations.Nullable; * @author Maxim.Mossienko */ public class AnnotationParameterInfoHandler implements ParameterInfoHandler, DumbAware { + @Nullable @Override - public @Nullable Object[] getParametersForLookup(LookupElement item, ParameterInfoContext context) { + public Object[] getParametersForLookup(LookupElement item, ParameterInfoContext context) { return null; } @@ -46,7 +47,7 @@ public class AnnotationParameterInfoHandler implements ParameterInfoHandler