Skip to content

Commit 5c22578

Browse files
committed
REMOVE AGAIN.
1 parent b3e96c4 commit 5c22578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNetCliInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private bool RunCommandAux(string args, string? workingDirectory, out IList<stri
6565
void onOut(string s) => logger.Log(silent ? Severity.Debug : Severity.Info, s, threadId);
6666
void onError(string s) => logger.LogError(s, threadId);
6767
logger.LogInfo($"Running '{Exec} {args}'{dirLog}");
68-
var exitCode = pi.ReadOutput(out output, onOut, onError);
68+
var exitCode = pi.ReadOutput(out output, _ => { }, _ => { });
6969
if (exitCode != 0)
7070
{
7171
logger.LogError($"Command '{Exec} {args}'{dirLog} failed with exit code {exitCode}");

0 commit comments

Comments
 (0)