Skip to content

Commit d54c04d

Browse files
committed
Remove references of WorkflowReactiveSwift from WorkflowCombineSampleApp
1 parent 55db045 commit d54c04d

File tree

2 files changed

+0
-64
lines changed

2 files changed

+0
-64
lines changed

Samples/WorkflowCombineSampleApp/README.md

-48
This file was deleted.

Samples/WorkflowCombineSampleApp/WorkflowCombineSampleApp/DemoWorker.swift

-16
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,3 @@ extension DemoWorkflow {
2929
func isEquivalent(to otherWorker: DemoWorkflow.DemoWorker) -> Bool { true }
3030
}
3131
}
32-
33-
/// Identifcal implementation of the Combine Worker using the WorkflowReactiveSwift library instead.
34-
/// To ensure that both implementations are correct, run the test suite with each implementation uncommented.
35-
// extension DemoWorkflow {
36-
// struct DemoWorker: WorkflowReactiveSwift.Worker {
37-
// typealias Output = Action
38-
//
39-
// func run() -> SignalProducer<DemoWorkflow.Action, Never> {
40-
// SignalProducer
41-
// .timer(interval: DispatchTimeInterval.seconds(1), on: QueueScheduler())
42-
// .map { .init(publishedDate: $0) }
43-
// }
44-
//
45-
// func isEquivalent(to otherWorker: DemoWorkflow.DemoWorker) -> Bool { true }
46-
// }
47-
// }

0 commit comments

Comments
 (0)