Skip to content

Commit 23384d8

Browse files
committed
fix missing method exception
1 parent 694f35f commit 23384d8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Rubberduck.CodeAnalysis/Inspections/Concrete/UnreachableCaseInspection.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,12 @@ public enum CaseInspectionResultType
137137
CaseElse
138138
}
139139

140+
public UnreachableCaseInspection(IDeclarationFinderProvider declarationFinderProvider)
141+
: this(declarationFinderProvider, null, null)
142+
{
143+
/* for reflection / default settings */
144+
}
145+
140146
public UnreachableCaseInspection(
141147
IDeclarationFinderProvider declarationFinderProvider,
142148
IUnreachableCaseInspector inspector,

0 commit comments

Comments
 (0)