Remove unnecessary function from AppLibrary.

Partial #313

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2024-10-23 12:00:34 -04:00
parent 6b27d516e9
commit 4e0a471d81
No known key found for this signature in database

View file

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