mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
QuickFixFactory: nullability annotations (IDEA-CR-47815)
GitOrigin-RevId: 838ba6c8d1bd710415f930973b91de882ec63932
This commit is contained in:
committed by
intellij-monorepo-bot
parent
901d23de0d
commit
1f379b77ed
@@ -508,9 +508,12 @@ public abstract class QuickFixFactory {
|
||||
throw new AbstractMethodError();
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public abstract IntentionAction createAddMissingEnumBranchesFix(@NotNull PsiSwitchBlock switchBlock, @NotNull Set<String> missingCases);
|
||||
|
||||
@NotNull
|
||||
public abstract IntentionAction createAddSwitchDefaultFix(@NotNull PsiSwitchBlock switchBlock, @Nullable String message);
|
||||
|
||||
public abstract IntentionAction createCollapseAnnotationsFix(PsiAnnotation annotation);
|
||||
@Nullable
|
||||
public abstract IntentionAction createCollapseAnnotationsFix(@NotNull PsiAnnotation annotation);
|
||||
}
|
||||
Reference in New Issue
Block a user