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