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.
//
@preconcurrency import Foundation
import Foundation
public struct Feed: Decodable, Sendable {
public let id: FervorID

View File

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

View File

@ -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

View File

@ -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

View File

@ -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

View File

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

View File

@ -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 {

View File

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

View File

@ -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 {

View File

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