Skip to content

Commit 15dd130

Browse files
committed
C#: Remove unused parameter in DownloadMissingPackages.
1 parent 41a527c commit 15dd130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/extractor/Semmle.Extraction.CSharp.Standalone/BuildAnalysis.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public BuildAnalysis(Options options, ProgressMonitor progressMonitor)
106106
{
107107
Restore(solutions);
108108
Restore(allProjects);
109-
DownloadMissingPackages(allProjects);
109+
DownloadMissingPackages();
110110
}
111111
}
112112

@@ -330,7 +330,7 @@ private void Restore(IEnumerable<string> targets, string? pathToNugetConfig = nu
330330
}
331331

332332

333-
private void DownloadMissingPackages(IEnumerable<string> restoreTargets)
333+
private void DownloadMissingPackages()
334334
{
335335
var nugetConfigs = GetFiles("nuget.config", recurseSubdirectories: true).ToArray();
336336
string? nugetConfig = null;

0 commit comments

Comments
 (0)