Skip to content

Commit 643b5b0

Browse files
committed
REMOVE AGAIN.
1 parent b3e96c4 commit 643b5b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ public static int ReadOutput(this ProcessStartInfo pi, out IList<string> stdout,
4444
});
4545
}
4646

47-
process.Start();
48-
4947
if (process.StartInfo.RedirectStandardError)
5048
{
5149
process.BeginErrorReadLine();
@@ -56,6 +54,8 @@ public static int ReadOutput(this ProcessStartInfo pi, out IList<string> stdout,
5654
process.BeginOutputReadLine();
5755
}
5856

57+
process.Start();
58+
5959
process.WaitForExit();
6060
stdout = @out;
6161
return process.ExitCode;

0 commit comments

Comments
 (0)