Skip to content

Commit 6e2fa78

Browse files
authored
Merge pull request #3612 from retailcoder/next
Decommissioning SynchronizeAttributesQuickFix
2 parents 51e6be7 + 4c4e877 commit 6e2fa78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rubberduck.Inspections/QuickFixes/SynchronizeAttributesQuickFix.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Linq;
55
using Antlr4.Runtime;
66
using Rubberduck.Inspections.Abstract;
7-
using Rubberduck.Inspections.Concrete;
87
using Rubberduck.Parsing.Annotations;
98
using Rubberduck.Parsing.Grammar;
109
using Rubberduck.Parsing.Inspections.Abstract;
@@ -15,14 +14,15 @@
1514

1615
namespace 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()

0 commit comments

Comments
 (0)