Remove unused preconcurrency import attributes
This commit is contained in:
parent
382826bfff
commit
6f3b8dc840
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 10/29/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public struct Feed: Decodable, Sendable {
|
||||
public let id: FervorID
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 11/25/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public actor FervorClient: Sendable {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 10/29/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public struct Group: Decodable, Sendable {
|
||||
public let id: FervorID
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 10/29/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public struct Instance: Decodable, Sendable {
|
||||
public let name: String
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 10/29/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public struct Item: Decodable, Sendable {
|
||||
public let id: FervorID
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 1/9/22.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
|
||||
public struct ItemsSyncUpdate: Decodable, Sendable {
|
||||
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
// Created by Shadowfacts on 11/25/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
import Fervor
|
||||
@preconcurrency import OSLog
|
||||
import OSLog
|
||||
import Combine
|
||||
|
||||
actor FervorController {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 10/29/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
import UIKit
|
||||
import OSLog
|
||||
|
||||
|
|
|
@ -59,7 +59,6 @@ class AppSplitViewController: UISplitViewController {
|
|||
let nav = viewController(for: .compact) as! UINavigationController
|
||||
let top = nav.topViewController!
|
||||
if top is ReadViewController || top is ItemsViewController {
|
||||
print(top.userActivity?.activityType)
|
||||
return top.userActivity
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// Created by Shadowfacts on 11/25/21.
|
||||
//
|
||||
|
||||
@preconcurrency import Foundation
|
||||
import Foundation
|
||||
import UIKit
|
||||
import AuthenticationServices
|
||||
import Fervor
|
||||
|
|
Loading…
Reference in New Issue