Conforms OperatingSystemVersion to Comparable

# Conflicts:
#	AltStore.xcodeproj/project.pbxproj
This commit is contained in:
Riley Testut
2022-11-15 16:24:44 -06:00
parent 7ea1ad5af0
commit 8609209821
3 changed files with 26 additions and 5 deletions

View File

@@ -37,11 +37,6 @@ class AppManagerPublisher: ObservableObject
fileprivate(set) var refreshProgress = [String: Progress]()
}
private func ==(lhs: OperatingSystemVersion, rhs: OperatingSystemVersion) -> Bool
{
return (lhs.majorVersion == rhs.majorVersion && lhs.minorVersion == rhs.minorVersion && lhs.patchVersion == rhs.patchVersion)
}
class AppManager
{
static let shared = AppManager()