[java-inspections] More ModCommand quick-fixes

GitOrigin-RevId: 84678d07a8553fac7d8605276e87977d912bcb0e
This commit is contained in:
Tagir Valeev
2023-06-17 13:46:32 +02:00
committed by intellij-monorepo-bot
parent 623d223b53
commit 854b5536b3
27 changed files with 224 additions and 341 deletions

View File

@@ -30,6 +30,6 @@ public final class PsiQuickFixFactory {
}
public static LocalQuickFix createChangeAnnotationParameterFix(@NotNull PsiAnnotation psiAnnotation, @NotNull String name, @Nullable String newValue) {
return new ChangeAnnotationParameterQuickFix(psiAnnotation, name, newValue);
return new ChangeAnnotationParameterQuickFix(psiAnnotation, name, newValue).asQuickFix();
}
}