Skip to content

Commit c369faa

Browse files
committed
Check in the rest of my conflict resolution
1 parent d0fa7cb commit c369faa

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Rubberduck.Inspections/QuickFixes/RemoveEmptyConditionBlockQuickFix.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
43
using Rubberduck.Inspections.Concrete;
54
using Rubberduck.Parsing.VBA;
@@ -9,16 +8,16 @@
98
using Antlr4.Runtime;
109
using Rubberduck.Parsing.Inspections.Resources;
1110
using System.Diagnostics;
11+
using Rubberduck.Inspections.Abstract;
1212

1313
namespace Rubberduck.Inspections.QuickFixes
1414
{
15-
internal sealed class RemoveEmptyConditionBlockQuickFix : IQuickFix
15+
internal sealed class RemoveEmptyConditionBlockQuickFix : QuickFixBase
1616
{
17-
private static readonly HashSet<Type> _supportedInspections = new HashSet<Type> { typeof(EmptyIfBlockInspection) };
1817
private readonly RubberduckParserState _state;
1918

2019
public RemoveEmptyConditionBlockQuickFix(RubberduckParserState state)
21-
: base(typeof(EmptyIfBlockInspection))
20+
: base(typeof(EmptyConditionBlockInspection))
2221
{
2322
_state = state;
2423
}

0 commit comments

Comments
 (0)