File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Rubberduck.CodeAnalysis/Inspections/Concrete Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ protected override IEnumerable<IInspectionResult> DoGetInspectionResults()
48
48
var finder = _declarationFinderProvider . DeclarationFinder ;
49
49
50
50
var results = new List < IInspectionResult > ( ) ;
51
- foreach ( var moduleDeclaration in State . DeclarationFinder . UserDeclarations ( DeclarationType . Module ) )
51
+ foreach ( var moduleDeclaration in finder . UserDeclarations ( DeclarationType . Module ) )
52
52
{
53
53
if ( moduleDeclaration == null )
54
54
{
@@ -91,7 +91,7 @@ private IInspectionResult InspectionResult(Declaration declaration)
91
91
declaration ) ;
92
92
}
93
93
94
- private string ResultDescription ( Declaration declaration )
94
+ private static string ResultDescription ( Declaration declaration )
95
95
{
96
96
var declarationTypeName = declaration . DeclarationType . ToString ( ) . ToLower ( ) ;
97
97
var identifierName = declaration . IdentifierName ;
You can’t perform that action at this time.
0 commit comments