[spellchecker] review fixes: marked SpellCheckerQuickFixFactory @Internal, hide EP_NAME

GitOrigin-RevId: c2a4e79aaa5bba8e43340fd6f2ec544483adc95c
This commit is contained in:
Denis Mukhametianov
2024-05-07 14:39:33 +02:00
committed by intellij-monorepo-bot
parent 1339ccbc9a
commit 614720f70b

View File

@@ -6,11 +6,12 @@ import com.intellij.openapi.extensions.ExtensionPointName
import com.intellij.openapi.util.TextRange import com.intellij.openapi.util.TextRange
import com.intellij.psi.PsiElement import com.intellij.psi.PsiElement
import com.intellij.spellchecker.DictionaryLayer import com.intellij.spellchecker.DictionaryLayer
import org.jetbrains.annotations.ApiStatus import org.jetbrains.annotations.ApiStatus.Internal
@Internal
abstract class SpellCheckerQuickFixFactory { abstract class SpellCheckerQuickFixFactory {
companion object { companion object {
val EP_NAME = ExtensionPointName.create<SpellCheckerQuickFixFactory>("com.intellij.spellchecker.quickFixFactory") private val EP_NAME = ExtensionPointName.create<SpellCheckerQuickFixFactory>("com.intellij.spellchecker.quickFixFactory")
@JvmStatic @JvmStatic
fun rename(element: PsiElement): LocalQuickFix { fun rename(element: PsiElement): LocalQuickFix {