Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ struct CombineLatestStateMachine<
}

mutating func elementProduced(_ result: (Base1.Element?, Base2.Element?, Base3.Element?)) -> ElementProducedAction? {
print("upstream produced: \(result)")
switch self.state {
case .initial:
// Child tasks that are producing elements are only created after we transitioned to `zipping`
Expand Down Expand Up @@ -375,7 +374,6 @@ struct CombineLatestStateMachine<
}

mutating func upstreamFinished(baseIndex: Int) -> UpstreamFinishedAction? {
print("upstream finished: \(baseIndex)")
switch self.state {
case .initial:
preconditionFailure("Internal inconsistency current state \(self.state) and received upstreamFinished()")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ final class CombineLatestStorage<
}
}

print("Returning: \(result)")
return try result._rethrowGet()

} onCancel: {
Expand Down