Remove unused preconcurrency import attributes

This commit is contained in:
Shadowfacts 2022-06-09 23:30:58 -04:00
parent 382826bfff
commit 6f3b8dc840
10 changed files with 10 additions and 11 deletions

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 10/29/21. // Created by Shadowfacts on 10/29/21.
// //
@preconcurrency import Foundation import Foundation
public struct Feed: Decodable, Sendable { public struct Feed: Decodable, Sendable {
public let id: FervorID public let id: FervorID

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 11/25/21. // Created by Shadowfacts on 11/25/21.
// //
@preconcurrency import Foundation import Foundation
public actor FervorClient: Sendable { public actor FervorClient: Sendable {

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 10/29/21. // Created by Shadowfacts on 10/29/21.
// //
@preconcurrency import Foundation import Foundation
public struct Group: Decodable, Sendable { public struct Group: Decodable, Sendable {
public let id: FervorID public let id: FervorID

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 10/29/21. // Created by Shadowfacts on 10/29/21.
// //
@preconcurrency import Foundation import Foundation
public struct Instance: Decodable, Sendable { public struct Instance: Decodable, Sendable {
public let name: String public let name: String

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 10/29/21. // Created by Shadowfacts on 10/29/21.
// //
@preconcurrency import Foundation import Foundation
public struct Item: Decodable, Sendable { public struct Item: Decodable, Sendable {
public let id: FervorID public let id: FervorID

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 1/9/22. // Created by Shadowfacts on 1/9/22.
// //
@preconcurrency import Foundation import Foundation
public struct ItemsSyncUpdate: Decodable, Sendable { public struct ItemsSyncUpdate: Decodable, Sendable {

View File

@ -5,9 +5,9 @@
// Created by Shadowfacts on 11/25/21. // Created by Shadowfacts on 11/25/21.
// //
@preconcurrency import Foundation import Foundation
import Fervor import Fervor
@preconcurrency import OSLog import OSLog
import Combine import Combine
actor FervorController { actor FervorController {

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 10/29/21. // Created by Shadowfacts on 10/29/21.
// //
@preconcurrency import Foundation import Foundation
import UIKit import UIKit
import OSLog import OSLog

View File

@ -59,7 +59,6 @@ class AppSplitViewController: UISplitViewController {
let nav = viewController(for: .compact) as! UINavigationController let nav = viewController(for: .compact) as! UINavigationController
let top = nav.topViewController! let top = nav.topViewController!
if top is ReadViewController || top is ItemsViewController { if top is ReadViewController || top is ItemsViewController {
print(top.userActivity?.activityType)
return top.userActivity return top.userActivity
} }
} else { } else {

View File

@ -5,7 +5,7 @@
// Created by Shadowfacts on 11/25/21. // Created by Shadowfacts on 11/25/21.
// //
@preconcurrency import Foundation import Foundation
import UIKit import UIKit
import AuthenticationServices import AuthenticationServices
import Fervor import Fervor