Add "Remove annotation" quickfix for @Throws override mismatch

This commit is contained in:
Svyatoslav Scherbina
2020-05-25 18:26:33 +03:00
parent 6461c1b4f1
commit 46caf27e70
5 changed files with 39 additions and 0 deletions
@@ -830,6 +830,11 @@ public class QuickFixMultiModuleTestGenerated extends AbstractQuickFixMultiModul
public void testRemoveEmptyThrows() throws Exception {
runTest("idea/testData/multiModuleQuickFix/fixNativeThrowsErrors/removeEmptyThrows/");
}
@TestMetadata("removeThrowsOnIncompatibleOverride")
public void testRemoveThrowsOnIncompatibleOverride() throws Exception {
runTest("idea/testData/multiModuleQuickFix/fixNativeThrowsErrors/removeThrowsOnIncompatibleOverride/");
}
}
@TestMetadata("idea/testData/multiModuleQuickFix/makeOverridenMemberOpen")