@@ -158,9 +158,6 @@ public func run<
158
158
/// - body: The custom execution body to manually control the running process
159
159
/// - Returns a ExecutableResult type containing the return value
160
160
/// of the closure.
161
- #if SubprocessSpan
162
- @available ( SubprocessSpan, * )
163
- #endif
164
161
public func run< Result, Input: InputProtocol , Error: OutputProtocol > (
165
162
_ executable: Executable ,
166
163
arguments: Arguments = [ ] ,
@@ -208,9 +205,6 @@ public func run<Result, Input: InputProtocol, Error: OutputProtocol>(
208
205
}
209
206
}
210
207
211
- #if SubprocessSpan
212
- @available ( SubprocessSpan, * )
213
- #endif
214
208
public func run< Result, Input: InputProtocol , Output: OutputProtocol > (
215
209
_ executable: Executable ,
216
210
arguments: Arguments = [ ] ,
@@ -258,9 +252,6 @@ public func run<Result, Input: InputProtocol, Output: OutputProtocol>(
258
252
}
259
253
}
260
254
261
- #if SubprocessSpan
262
- @available ( SubprocessSpan, * )
263
- #endif
264
255
public func run< Result, Error: OutputProtocol > (
265
256
_ executable: Executable ,
266
257
arguments: Arguments = [ ] ,
@@ -291,9 +282,6 @@ public func run<Result, Error: OutputProtocol>(
291
282
}
292
283
}
293
284
294
- #if SubprocessSpan
295
- @available ( SubprocessSpan, * )
296
- #endif
297
285
public func run< Result, Output: OutputProtocol > (
298
286
_ executable: Executable ,
299
287
arguments: Arguments = [ ] ,
@@ -340,9 +328,6 @@ public func run<Result, Output: OutputProtocol>(
340
328
/// - body: The custom execution body to manually control the running process
341
329
/// - Returns a ExecutableResult type containing the return value
342
330
/// of the closure.
343
- #if SubprocessSpan
344
- @available ( SubprocessSpan, * )
345
- #endif
346
331
public func run< Result> (
347
332
_ executable: Executable ,
348
333
arguments: Arguments = [ ] ,
@@ -486,9 +471,6 @@ public func run<
486
471
/// the running process and write to its standard input.
487
472
/// - Returns a ExecutableResult type containing the return value
488
473
/// of the closure.
489
- #if SubprocessSpan
490
- @available ( SubprocessSpan, * )
491
- #endif
492
474
public func run< Result> (
493
475
_ configuration: Configuration ,
494
476
isolation: isolated ( any Actor ) ? = #isolation,
@@ -528,9 +510,6 @@ public func run<Result>(
528
510
/// - output: A file descriptor to bind to the subprocess' standard output.
529
511
/// - error: A file descriptor to bind to the subprocess' standard error.
530
512
/// - Returns: the process identifier for the subprocess.
531
- #if SubprocessSpan
532
- @available ( SubprocessSpan, * )
533
- #endif
534
513
public func runDetached(
535
514
_ executable: Executable ,
536
515
arguments: Arguments = [ ] ,
@@ -564,9 +543,6 @@ public func runDetached(
564
543
/// - output: A file descriptor to bind to the subprocess' standard output.
565
544
/// - error: A file descriptor to bind to the subprocess' standard error.
566
545
/// - Returns: the process identifier for the subprocess.
567
- #if SubprocessSpan
568
- @available ( SubprocessSpan, * )
569
- #endif
570
546
public func runDetached(
571
547
_ configuration: Configuration ,
572
548
input: FileDescriptor ? = nil ,
0 commit comments