diff --git a/source/com/intellij/refactoring/introduceVariable/IntroduceVariableBase.java b/source/com/intellij/refactoring/introduceVariable/IntroduceVariableBase.java index 8c99981b3a6f..c160e87d26d9 100644 --- a/source/com/intellij/refactoring/introduceVariable/IntroduceVariableBase.java +++ b/source/com/intellij/refactoring/introduceVariable/IntroduceVariableBase.java @@ -370,7 +370,7 @@ public abstract class IntroduceVariableBase extends IntroduceHandlerBase impleme protected abstract void highlightReplacedOccurences(Project project, Editor editor, PsiElement[] replacedOccurences); - protected abstract void getSettings(InputValidator validator); + protected abstract void getSettings(); protected abstract void showErrorMessage(String message, Project project); diff --git a/source/com/intellij/refactoring/introduceVariable/IntroduceVariableHandler.java b/source/com/intellij/refactoring/introduceVariable/IntroduceVariableHandler.java index cde1876eec16..a97245159e06 100644 --- a/source/com/intellij/refactoring/introduceVariable/IntroduceVariableHandler.java +++ b/source/com/intellij/refactoring/introduceVariable/IntroduceVariableHandler.java @@ -17,7 +17,7 @@ import java.util.ArrayList; public class IntroduceVariableHandler extends IntroduceVariableBase { - protected void getSettings(IntroduceVariableBase.InputValidator validator) { + protected void getSettings() { ArrayList highlighters = new ArrayList(); HighlightManager highlightManager = null; if (editor != null) {