Skip to content

Commit 4011c7c

Browse files
authored
AsyncProcess: Replace unused vars with _ to address warning (#7955)
1 parent b348d44 commit 4011c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Basics/Concurrency/AsyncProcess.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ package final class AsyncProcess {
218218
case let .stream(stdoutClosure, stderrClosure, _):
219219
(stdoutClosure: stdoutClosure, stderrClosure: stderrClosure)
220220

221-
case let .asyncStream(stdoutStream, stdoutContinuation, stderrStream, stderrContinuation):
221+
case let .asyncStream(_, stdoutContinuation, _, stderrContinuation):
222222
(stdoutClosure: { stdoutContinuation.yield($0) }, stderrClosure: { stderrContinuation.yield($0) })
223223

224224
case .collect, .none:

0 commit comments

Comments
 (0)