We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30882d5 commit a60871bCopy full SHA for a60871b
Rubberduck.Inspections/QuickFixes/AddIdentifierToWhiteListQuickFix.cs
@@ -29,8 +29,8 @@ public override void Fix(IInspectionResult result)
29
30
public override string Description(IInspectionResult result) => InspectionsUI.WhiteListIdentifierQuickFix;
31
32
- public override bool CanFixInProcedure => false;
33
- public override bool CanFixInModule => false;
34
- public override bool CanFixInProject => false;
+ public override bool CanFixInProcedure { get; } = false;
+ public override bool CanFixInModule { get; } = false;
+ public override bool CanFixInProject { get; } = false;
35
}
36
0 commit comments