diff --git a/platform/analysis-impl/src/com/intellij/codeInsight/intention/QuickFixes.java b/platform/analysis-impl/src/com/intellij/codeInsight/intention/QuickFixes.java index 47b382c78d1d..1631823bfb3b 100644 --- a/platform/analysis-impl/src/com/intellij/codeInsight/intention/QuickFixes.java +++ b/platform/analysis-impl/src/com/intellij/codeInsight/intention/QuickFixes.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2014 JetBrains s.r.o. + * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,7 +27,7 @@ import org.jetbrains.annotations.Nullable; public class QuickFixes { public static final LocalQuickFixAndIntentionActionOnPsiElement EMPTY_FIX = new LocalQuickFixAndIntentionActionOnPsiElement(null) { @Override - public void invoke(@NotNull Project project, @NotNull PsiFile file, @Nullable("is null when called from inspection") Editor editor, @NotNull PsiElement psiElement, @NotNull PsiElement psiElement2) { + public void invoke(@NotNull Project project, @NotNull PsiFile file, @Nullable Editor editor, @NotNull PsiElement startElement, @NotNull PsiElement endElement) { throw new UnsupportedOperationException(); } @@ -62,5 +62,4 @@ public class QuickFixes { throw new UnsupportedOperationException(); } }; - -} +} \ No newline at end of file