We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790835c commit 8e698f2Copy full SHA for 8e698f2
1 file changed
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs
@@ -122,12 +122,10 @@ public HashSet<AssemblyLookupLocation> Restore()
122
123
try
124
{
125
- HashSet<string> allFeeds = [];
126
-
127
// Find feeds that are configured in NuGet.config files and divide them into ones that
128
// are explicitly configured for the project or by a private registry, and "all feeds"
129
// (including inherited ones) from other locations on the host outside of the working directory.
130
- (explicitFeeds, allFeeds) = GetAllFeeds();
+ (explicitFeeds, var allFeeds) = GetAllFeeds();
131
132
if (CheckNugetFeedResponsiveness)
133
0 commit comments