File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Rubberduck.Inspections/QuickFixes Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Collections . Generic ;
3
2
using System . Linq ;
4
3
using Rubberduck . Inspections . Concrete ;
5
4
using Rubberduck . Parsing . VBA ;
9
8
using Antlr4 . Runtime ;
10
9
using Rubberduck . Parsing . Inspections . Resources ;
11
10
using System . Diagnostics ;
11
+ using Rubberduck . Inspections . Abstract ;
12
12
13
13
namespace Rubberduck . Inspections . QuickFixes
14
14
{
15
- internal sealed class RemoveEmptyConditionBlockQuickFix : IQuickFix
15
+ internal sealed class RemoveEmptyConditionBlockQuickFix : QuickFixBase
16
16
{
17
- private static readonly HashSet < Type > _supportedInspections = new HashSet < Type > { typeof ( EmptyIfBlockInspection ) } ;
18
17
private readonly RubberduckParserState _state ;
19
18
20
19
public RemoveEmptyConditionBlockQuickFix ( RubberduckParserState state )
21
- : base ( typeof ( EmptyIfBlockInspection ) )
20
+ : base ( typeof ( EmptyConditionBlockInspection ) )
22
21
{
23
22
_state = state ;
24
23
}
You can’t perform that action at this time.
0 commit comments