Skip to content

Commit a60871b

Browse files
committed
Address comment
1 parent 30882d5 commit a60871b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rubberduck.Inspections/QuickFixes/AddIdentifierToWhiteListQuickFix.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public override void Fix(IInspectionResult result)
2929

3030
public override string Description(IInspectionResult result) => InspectionsUI.WhiteListIdentifierQuickFix;
3131

32-
public override bool CanFixInProcedure => false;
33-
public override bool CanFixInModule => false;
34-
public override bool CanFixInProject => false;
32+
public override bool CanFixInProcedure { get; } = false;
33+
public override bool CanFixInModule { get; } = false;
34+
public override bool CanFixInProject { get; } = false;
3535
}
3636
}

0 commit comments

Comments
 (0)