X-Git-Url: http://git.jetbrains.org/?p=idea%2Fcommunity.git;a=blobdiff_plain;f=java%2FtestFramework%2Fsrc%2Fcom%2Fintellij%2FcodeInsight%2Fdaemon%2FquickFix%2FLightQuickFixTestCase.java;h=aa260c135230c0987bd54c926da77ed0099f767d;hp=19ec879a4f3585bf685186df6be29246d5b5c39c;hb=fab45b687e70c8c6437672e9ad4849786360b61b;hpb=c6f72e8329ac247fafa508bfcdf02678e473fc37 diff --git a/java/testFramework/src/com/intellij/codeInsight/daemon/quickFix/LightQuickFixTestCase.java b/java/testFramework/src/com/intellij/codeInsight/daemon/quickFix/LightQuickFixTestCase.java index 19ec879a4f35..aa260c135230 100644 --- a/java/testFramework/src/com/intellij/codeInsight/daemon/quickFix/LightQuickFixTestCase.java +++ b/java/testFramework/src/com/intellij/codeInsight/daemon/quickFix/LightQuickFixTestCase.java @@ -55,11 +55,6 @@ public abstract class LightQuickFixTestCase extends LightDaemonAnalyzerTestCase return false; } - @NotNull - protected ActionHint parseActionHintImpl(@NotNull PsiFile file, @NotNull String contents) { - return ActionHint.parse(file, contents); - } - private static void doTestFor(@NotNull String testName, @NotNull QuickFixTestCase quickFixTestCase) { final String relativePath = ObjectUtils.notNull(quickFixTestCase.getBasePath(), "") + "/" + BEFORE_PREFIX + testName; final String testFullPath = quickFixTestCase.getTestDataPath().replace(File.separatorChar, '/') + relativePath; @@ -239,7 +234,7 @@ public abstract class LightQuickFixTestCase extends LightDaemonAnalyzerTestCase @NotNull @Override public ActionHint parseActionHintImpl(@NotNull PsiFile file, @NotNull String contents) { - return LightQuickFixTestCase.this.parseActionHintImpl(file, contents); + return ActionHint.parse(file, contents); } @Override