From b41a6e5cbad126a185b041e306de8fe7dedf3e82 Mon Sep 17 00:00:00 2001 From: Yaroslav Lepenkin Date: Thu, 3 Nov 2016 12:00:20 +0300 Subject: [PATCH] [Parameter Name Hints] EP comments clarified --- .../codeInsight/hints/InlayParameterHintsProvider.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/platform/lang-api/src/com/intellij/codeInsight/hints/InlayParameterHintsProvider.kt b/platform/lang-api/src/com/intellij/codeInsight/hints/InlayParameterHintsProvider.kt index 7560c32b9637..f3dbbf941ea0 100644 --- a/platform/lang-api/src/com/intellij/codeInsight/hints/InlayParameterHintsProvider.kt +++ b/platform/lang-api/src/com/intellij/codeInsight/hints/InlayParameterHintsProvider.kt @@ -32,13 +32,12 @@ interface InlayParameterHintsProvider { /** * Provides fully qualified method name (e.g. "java.util.Map.put") and list of it's parameter names. - * Used when adding method to blacklist, when user invokes alt-enter on hint - * and selects "Do not show for this method". + * Used to obtain method information when adding it to blacklist */ fun getMethodInfo(element: PsiElement): MethodInfo? /** - * Default list of methods for which hints should not be shown + * Default list of patterns for which hints should not be shown */ val defaultBlackList: Set