File tree Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -34,23 +34,11 @@ public struct Execution: Sendable {
34
34
/// The process identifier of the current execution
35
35
public let processIdentifier : ProcessIdentifier
36
36
37
- #if os(Windows)
38
- internal let consoleBehavior : PlatformOptions . ConsoleBehavior
39
-
40
- init (
41
- processIdentifier: ProcessIdentifier ,
42
- consoleBehavior: PlatformOptions . ConsoleBehavior
43
- ) {
44
- self . processIdentifier = processIdentifier
45
- self . consoleBehavior = consoleBehavior
46
- }
47
- #else
48
37
init (
49
38
processIdentifier: ProcessIdentifier
50
39
) {
51
40
self . processIdentifier = processIdentifier
52
41
}
53
- #endif // os(Windows)
54
42
}
55
43
56
44
// MARK: - Output Capture
Original file line number Diff line number Diff line change @@ -140,8 +140,7 @@ extension Configuration {
140
140
threadHandle: processInfo. hThread
141
141
)
142
142
let execution = Execution (
143
- processIdentifier: pid,
144
- consoleBehavior: self . platformOptions. consoleBehavior
143
+ processIdentifier: pid
145
144
)
146
145
147
146
do {
@@ -285,8 +284,7 @@ extension Configuration {
285
284
threadHandle: processInfo. hThread
286
285
)
287
286
let execution = Execution (
288
- processIdentifier: pid,
289
- consoleBehavior: self . platformOptions. consoleBehavior
287
+ processIdentifier: pid
290
288
)
291
289
292
290
do {
You can’t perform that action at this time.
0 commit comments