@@ -31,15 +31,12 @@ public IEnumerable<IInspectionResult> InspectionResultsForModules(IEnumerable<(s
31
31
return InspectionResults ( vbe ) ;
32
32
}
33
33
34
- public IEnumerable < IInspectionResult > InspectionResultsForModules ( ( string name , string content , ComponentType componentType ) module , string library )
35
- => InspectionResultsForModules ( new ( string , string , ComponentType ) [ ] { module } , new string [ ] { library } ) ;
34
+ public IEnumerable < IInspectionResult > InspectionResultsForModules ( ( string name , string content , ComponentType componentType ) module , params string [ ] libraries )
35
+ => InspectionResultsForModules ( new ( string , string , ComponentType ) [ ] { module } , libraries ) ;
36
36
37
37
public IEnumerable < IInspectionResult > InspectionResultsForModules ( IEnumerable < ( string name , string content , ComponentType componentType ) > modules , string library )
38
38
=> InspectionResultsForModules ( modules , new string [ ] { library } ) ;
39
39
40
- public IEnumerable < IInspectionResult > InspectionResultsForModules ( ( string name , string content , ComponentType componentType ) module , IEnumerable < string > libraries )
41
- => InspectionResultsForModules ( new ( string , string , ComponentType ) [ ] { module } , libraries ) ;
42
-
43
40
public IEnumerable < IInspectionResult > InspectionResultsForModules ( IEnumerable < ( string name , string content , ComponentType componentType ) > modules , IEnumerable < string > libraries )
44
41
{
45
42
var vbe = MockVbeBuilder . BuildFromModules ( modules , libraries ) . Object ;
0 commit comments