From 6b525f3f53aff8cf056a8c2fc7b71862ab0fb7dd Mon Sep 17 00:00:00 2001 From: Tagir Valeev Date: Wed, 14 Feb 2024 16:29:09 +0100 Subject: [PATCH] [spellchecker] Redundant line removed GitOrigin-RevId: 41fb28d86f5e4c5f6652a713df9f87362d52216f --- .../spellchecker/inspections/SpellCheckingInspection.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spellchecker/src/com/intellij/spellchecker/inspections/SpellCheckingInspection.java b/spellchecker/src/com/intellij/spellchecker/inspections/SpellCheckingInspection.java index e1ba347ace2f..615fc3f544db 100644 --- a/spellchecker/src/com/intellij/spellchecker/inspections/SpellCheckingInspection.java +++ b/spellchecker/src/com/intellij/spellchecker/inspections/SpellCheckingInspection.java @@ -3,7 +3,9 @@ package com.intellij.spellchecker.inspections; import com.intellij.codeInspection.*; import com.intellij.codeInspection.options.OptPane; -import com.intellij.lang.*; +import com.intellij.lang.ASTNode; +import com.intellij.lang.Language; +import com.intellij.lang.LanguageNamesValidation; import com.intellij.lang.injection.InjectedLanguageManager; import com.intellij.lang.refactoring.NamesValidator; import com.intellij.openapi.progress.ProgressManager; @@ -118,7 +120,6 @@ public final class SpellCheckingInspection extends LocalInspectionTool { * Splits element text in tokens according to spell checker strategy of given language * * @param element Psi element - * @param allowedScopes * @param language Usually element.getLanguage() * @param consumer the consumer of tokens */