File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Rubberduck.Inspections/QuickFixes Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 44using System . Linq ;
55using Antlr4 . Runtime ;
66using Rubberduck . Inspections . Abstract ;
7- using Rubberduck . Inspections . Concrete ;
87using Rubberduck . Parsing . Annotations ;
98using Rubberduck . Parsing . Grammar ;
10- using Rubberduck . Parsing . Inspections ;
119using Rubberduck . Parsing . Inspections . Abstract ;
1210using Rubberduck . Parsing . Inspections . Resources ;
1311using Rubberduck . Parsing . Symbols ;
1614
1715namespace Rubberduck . Inspections . QuickFixes
1816{
17+ [ Obsolete ( "Damages user code, and will be moot with custom code panes anyway." ) ]
1918 public sealed class SynchronizeAttributesQuickFix : QuickFixBase
2019 {
2120 private readonly RubberduckParserState _state ;
2221
2322 private readonly IDictionary < string , string > _attributeNames ;
2423
2524 public SynchronizeAttributesQuickFix ( RubberduckParserState state )
26- : base ( /* typeof(MissingAnnotationArgumentInspection), typeof(MissingAttributeInspection)*/ )
25+ // : base(typeof(MissingAnnotationArgumentInspection), typeof(MissingAttributeInspection))
2726 {
2827 _state = state ;
2928 _attributeNames = typeof ( AnnotationType ) . GetFields ( )
You can’t perform that action at this time.
0 commit comments