[java-inspections] More ModCommand fixes

GitOrigin-RevId: 0c09d9d462156b87b8cd8ef33d203d959a579baf
This commit is contained in:
Tagir Valeev
2023-06-26 14:40:01 +02:00
committed by intellij-monorepo-bot
parent 49d9360cff
commit 2f1be4183d
17 changed files with 98 additions and 185 deletions

View File

@@ -44,8 +44,8 @@ public class DataFlowInspection extends DataFlowInspectionBase {
private static final Logger LOG = Logger.getInstance(DataFlowInspection.class);
@Override
protected LocalQuickFix createMutabilityViolationFix(PsiElement violation, boolean onTheFly) {
return WrapWithMutableCollectionFix.createFix(violation, onTheFly);
protected LocalQuickFix createMutabilityViolationFix(PsiElement violation) {
return WrapWithMutableCollectionFix.createFix(violation);
}
@Nullable