We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd985cb commit ca88890Copy full SHA for ca88890
1 file changed
NetworkingInOperations-Example/Data/Abstract/ConcurrentOperation.swift
@@ -22,13 +22,13 @@ class ConcurrentOperation<T>: Operation {
22
23
// MARK: - State
24
25
- enum State: String {
+ private enum State: String {
26
case ready = "isReady"
27
case executing = "isExecuting"
28
case finished = "isFinished"
29
}
30
31
- var state = State.ready {
+ private var state = State.ready {
32
willSet {
33
willChangeValue(forKey: newValue.rawValue)
34
willChangeValue(forKey: state.rawValue)
0 commit comments