From 4e0a471d81c9e11103236a58cfc1c1d2bddf71a5 Mon Sep 17 00:00:00 2001 From: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:00:34 -0400 Subject: [PATCH] Remove unnecessary function from `AppLibrary`. Partial #313 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> --- Sources/mas/Controllers/AppLibrary.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Sources/mas/Controllers/AppLibrary.swift b/Sources/mas/Controllers/AppLibrary.swift index ebdcd70..d05e180 100644 --- a/Sources/mas/Controllers/AppLibrary.swift +++ b/Sources/mas/Controllers/AppLibrary.swift @@ -13,12 +13,6 @@ protocol AppLibrary { /// Entire set of installed apps. var installedApps: [SoftwareProduct] { get } - /// Finds an app for appID. - /// - /// - Parameter appID: app ID for app. - /// - Returns: SoftwareProduct of app if found; nil otherwise. - func installedApp(withAppID appID: AppID) -> SoftwareProduct? - /// Uninstalls an app. /// /// - Parameter app: App to be removed.