Removes unnecessary @available annotations

This commit is contained in:
Riley Testut
2023-03-02 17:02:11 -06:00
parent 468e912e47
commit 961bc5aa66
16 changed files with 0 additions and 32 deletions

View File

@@ -15,7 +15,6 @@ import AltStoreCore
import AltSign
import Roxas
@available(iOS 14, *)
protocol PatchAppContext
{
var bundleIdentifier: String { get }
@@ -71,7 +70,6 @@ private struct OTAUpdate
var archivePath: String
}
@available(iOS 14, *)
class PatchAppOperation: ResultOperation<Void>
{
let context: PatchAppContext
@@ -148,7 +146,6 @@ private let ALTFragmentZipCallback: @convention(c) (UInt32) -> Void = { (percent
progress.completedUnitCount = Int64(percentageComplete)
}
@available(iOS 14, *)
private extension PatchAppOperation
{
func fetchOTAUpdate() -> AnyPublisher<OTAUpdate, Error>