File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Rubberduck.Inspections/QuickFixes Expand file tree Collapse file tree 1 file changed +2
-2
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 ;
109using Rubberduck . Parsing . Inspections . Abstract ;
1514
1615namespace Rubberduck . Inspections . QuickFixes
1716{
17+ [ Obsolete ( "Damages user code, and will be moot with custom code panes anyway." ) ]
1818 public sealed class SynchronizeAttributesQuickFix : QuickFixBase
1919 {
2020 private readonly RubberduckParserState _state ;
2121
2222 private readonly IDictionary < string , string > _attributeNames ;
2323
2424 public SynchronizeAttributesQuickFix ( RubberduckParserState state )
25- : base ( typeof ( MissingAnnotationArgumentInspection ) , typeof ( MissingAttributeInspection ) )
25+ // : base(typeof(MissingAnnotationArgumentInspection), typeof(MissingAttributeInspection))
2626 {
2727 _state = state ;
2828 _attributeNames = typeof ( AnnotationType ) . GetFields ( )
You can’t perform that action at this time.
0 commit comments