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

@@ -33,7 +33,6 @@ extension AppManager
}
}
@available(iOS 13, *)
class AppManagerPublisher: ObservableObject
{
@Published
@@ -92,7 +91,6 @@ class AppManager
self.progressLock.deallocate()
}
@available(iOS 13, *)
func prepareSubscriptions()
{
/// Every time refreshProgress is changed, update all InstalledApps in memory
@@ -697,7 +695,6 @@ extension AppManager
self.run([removeAppOperation, removeAppBackupOperation], context: authenticationContext)
}
@available(iOS 14, *)
func enableJIT(for installedApp: InstalledApp, completionHandler: @escaping (Result<Void, Error>) -> Void)
{
class Context: OperationContext, EnableJITContext
@@ -730,7 +727,6 @@ extension AppManager
self.run([enableJITOperation], context: context, requiresSerialQueue: true)
}
@available(iOS 14.0, *)
func patch(resignedApp: ALTApplication, presentingViewController: UIViewController, context authContext: AuthenticatedOperationContext, completionHandler: @escaping (Result<InstalledApp, Error>) -> Void) -> PatchAppOperation
{
class Context: InstallAppOperationContext, PatchAppContext