Skip to content

Commit 1c89a51

Browse files
committed
Remove unnecessary Combine imports
1 parent c01becf commit 1c89a51

File tree

5 files changed

+2
-6
lines changed

5 files changed

+2
-6
lines changed

Examples/SpeechRecognition/SpeechRecognition/SpeechClient/Client.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Combine
21
import Speech
32

43
struct SpeechClient {

Examples/SpeechRecognition/SpeechRecognition/SpeechClient/Unimplemented.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Combine
21
import ComposableArchitecture
32
import Speech
43
import XCTestDynamicOverlay

Sources/ComposableArchitecture/Documentation.docc/Articles/Testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,10 @@ time-based asynchrony, but in a way that is controllable. One way to do this is
320320
scheduler to the environment:
321321

322322
```swift
323-
import CombineSchedulers
323+
import ReactiveSwift
324324

325325
struct Environment {
326-
var mainQueue: any SchedulerOf<DispatchQueue>
326+
var mainQueue: DateScheduler
327327
}
328328
```
329329

Sources/ComposableArchitecture/Reducer.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import CasePaths
2-
import Combine
32

43
/// A reducer describes how to evolve the current state of an application to the next state, given
54
/// an action, and describes what ``Effect``s should be executed later by the store, if any.

Tests/ComposableArchitectureTests/TaskCancellationTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Combine
21
import XCTest
32

43
@testable import ComposableArchitecture

0 commit comments

Comments
 (0)