Skip to content

Commit 0018170

Browse files
committed
fixed some copy-paste-edit errors
1 parent 2b14add commit 0018170

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Rubberduck.Inspections/Concrete/EmptyForEachBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal class EmptyForEachBlockInspection : ParseTreeInspectionBase
1616
public EmptyForEachBlockInspection(RubberduckParserState state)
1717
: base(state, CodeInspectionSeverity.Suggestion) { }
1818

19-
public override Type Type => typeof(EmptyCaseBlockInspection);
19+
public override Type Type => typeof(EmptyForEachBlockInspection);
2020

2121
public override CodeInspectionType InspectionType => CodeInspectionType.CodeQualityIssues;
2222

Rubberduck.Inspections/Concrete/EmptyForLoopBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal class EmptyForLoopBlockInspection : ParseTreeInspectionBase
1616
public EmptyForLoopBlockInspection(RubberduckParserState state)
1717
: base(state, CodeInspectionSeverity.Suggestion) { }
1818

19-
public override Type Type => typeof(EmptyCaseBlockInspection);
19+
public override Type Type => typeof(EmptyForLoopBlockInspection);
2020

2121
public override CodeInspectionType InspectionType => CodeInspectionType.CodeQualityIssues;
2222

Rubberduck.Inspections/Concrete/EmptyIfBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal class EmptyIfBlockInspection : ParseTreeInspectionBase
1818
public EmptyIfBlockInspection(RubberduckParserState state)
1919
: base(state, CodeInspectionSeverity.Suggestion) { }
2020

21-
public override Type Type => typeof(EmptyCaseBlockInspection);
21+
public override Type Type => typeof(EmptyIfBlockInspection);
2222

2323
public override CodeInspectionType InspectionType => CodeInspectionType.CodeQualityIssues;
2424

Rubberduck.Inspections/Concrete/EmptyWhileWendBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal class EmptyWhileWendBlockInspection : ParseTreeInspectionBase
1616
public EmptyWhileWendBlockInspection(RubberduckParserState state)
1717
: base(state, CodeInspectionSeverity.Suggestion) { }
1818

19-
public override Type Type => typeof(EmptyCaseBlockInspection);
19+
public override Type Type => typeof(EmptyWhileWendBlockInspection);
2020

2121
public override CodeInspectionType InspectionType => CodeInspectionType.CodeQualityIssues;
2222

0 commit comments

Comments
 (0)