File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/ApiCompat/Microsoft.DotNet.ApiCompatibility/Runner Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,13 @@ public void ExecuteWorkItems()
46
46
47
47
foreach ( ApiCompatRunnerWorkItem workItem in _workItems )
48
48
{
49
- IReadOnlyList < ElementContainer < IAssemblySymbol > > leftContainerList = CreateAssemblySymbols ( workItem . Left , workItem . Options , out bool resolvedExternallyProvidedAssemblyReferences ) ;
49
+ IReadOnlyList < ElementContainer < IAssemblySymbol > > leftContainerList = CreateAssemblySymbols ( workItem . Left , out bool resolvedExternallyProvidedAssemblyReferences ) ;
50
50
bool runWithReferences = resolvedExternallyProvidedAssemblyReferences ;
51
51
52
52
List < IEnumerable < ElementContainer < IAssemblySymbol > > > rightContainersList = new ( workItem . Right . Count ) ;
53
53
foreach ( IReadOnlyList < MetadataInformation > right in workItem . Right )
54
54
{
55
- IReadOnlyList < ElementContainer < IAssemblySymbol > > rightContainers = CreateAssemblySymbols ( right . ToImmutableArray ( ) , workItem . Options , out resolvedExternallyProvidedAssemblyReferences ) ;
55
+ IReadOnlyList < ElementContainer < IAssemblySymbol > > rightContainers = CreateAssemblySymbols ( right . ToImmutableArray ( ) , out resolvedExternallyProvidedAssemblyReferences ) ;
56
56
rightContainersList . Add ( rightContainers ) ;
57
57
runWithReferences &= resolvedExternallyProvidedAssemblyReferences ;
58
58
}
@@ -112,7 +112,6 @@ public void ExecuteWorkItems()
112
112
}
113
113
114
114
private IReadOnlyList < ElementContainer < IAssemblySymbol > > CreateAssemblySymbols ( IReadOnlyList < MetadataInformation > metadataInformation ,
115
- ApiCompatRunnerOptions options ,
116
115
out bool resolvedExternallyProvidedAssemblyReferences )
117
116
{
118
117
string [ ] aggregatedReferences = metadataInformation . Where ( m => m . References != null ) . SelectMany ( m => m . References ! ) . Distinct ( ) . ToArray ( ) ;
You can’t perform that action at this time.
0 commit comments