[completion] IJPL-207762 rename implementationClass attribute to handler

to avoid warnings about missing default constructor in handlers

GitOrigin-RevId: 03e43689828239a048dcbeaa810e1f735e5712fe
This commit is contained in:
Max Medvedev
2025-10-20 00:06:44 +00:00
committed by intellij-monorepo-bot
parent 537a088ed2
commit e129728c80
5 changed files with 10 additions and 11 deletions
@@ -79,11 +79,11 @@
defaultValue="false"
description="Format chained calls as in versions prior to 2021.2"/>
<completion.frontendFriendlyInsertHandler implementationClass="com.intellij.codeInsight.completion.method.DiamondInsertHandler"/>
<completion.frontendFriendlyInsertHandler implementationClass="com.intellij.codeInsight.completion.method.RefStartInsertHandler"/>
<completion.frontendFriendlyInsertHandler implementationClass="com.intellij.codeInsight.completion.method.FrontendFriendlyParenthesesInsertHandler"/>
<completion.frontendFriendlyInsertHandler implementationClass="com.intellij.codeInsight.completion.method.MethodCallInstallerHandler"/>
<completion.frontendFriendlyInsertHandler implementationClass="com.intellij.codeInsight.completion.method.NegationInsertHandler"/>
<completion.frontendFriendlyInsertHandler handler="com.intellij.codeInsight.completion.method.DiamondInsertHandler"/>
<completion.frontendFriendlyInsertHandler handler="com.intellij.codeInsight.completion.method.RefStartInsertHandler"/>
<completion.frontendFriendlyInsertHandler handler="com.intellij.codeInsight.completion.method.FrontendFriendlyParenthesesInsertHandler"/>
<completion.frontendFriendlyInsertHandler handler="com.intellij.codeInsight.completion.method.MethodCallInstallerHandler"/>
<completion.frontendFriendlyInsertHandler handler="com.intellij.codeInsight.completion.method.NegationInsertHandler"/>
</extensions>
</idea-plugin>
@@ -8,7 +8,6 @@ import com.intellij.codeInsight.lookup.LookupElement
import com.intellij.util.ThreeState
import kotlinx.serialization.Serializable
@Suppress("NonDefaultConstructor")
@Serializable
class FrontendFriendlyParenthesesInsertHandler(
private val hasParameters: Boolean