From fa849e13f22a38fd0d818d2e30ff9ab6f11eeece Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Fri, 17 Feb 2017 12:52:13 +0100 Subject: [PATCH] Cleanup (formatting) --- .../src/com/intellij/codeInsight/intention/QuickFixes.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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