Remove dead code

This commit is contained in:
Maurice Parker 2019-10-22 17:22:02 -05:00
parent 8189695b29
commit b0881f47fc
1 changed files with 0 additions and 18 deletions

View File

@ -8,7 +8,6 @@
import UIKit
import UserNotifications
import SwiftUI
import Account
import Articles
import RSCore
@ -1699,20 +1698,3 @@ private extension SceneCoordinator {
}
}
// MARK: SwiftUI
struct SceneCoordinatorHolder {
weak var value: SceneCoordinator?
}
struct SceneCoordinatorKey: EnvironmentKey {
static var defaultValue: SceneCoordinatorHolder { return SceneCoordinatorHolder(value: nil ) }
}
extension EnvironmentValues {
var sceneCoordinator: SceneCoordinator? {
get { return self[SceneCoordinatorKey.self].value }
set { self[SceneCoordinatorKey.self].value = newValue }
}
}