Skip to content

Commit 4623228

Browse files
authored
Empty is a method
1 parent f26edf7 commit 4623228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cli/dotnet/commands/RestoringCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private static (string[] newArgumentsToAdd, string[] existingArgumentsToForward)
118118
HashSet<string> newArgumentsToAdd = new() { "-tlp:verbosity=quiet" };
119119
List<string> existingArgumentsToForward = new();
120120

121-
foreach (var argument in forwardedArguments ?? Enumerable.Empty<string>)
121+
foreach (var argument in forwardedArguments ?? Enumerable.Empty<string>())
122122
{
123123
if (!IsExcludedFromSeparateRestore(argument) && !IsExcludedFromRestore(argument))
124124
{

0 commit comments

Comments
 (0)