diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-06-22 15:35:53 +0200 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2020-06-22 15:35:53 +0200 |
| commit | 3d42f3753889f15f7013d0216f577a7ba6e3120c (patch) | |
| tree | 9ef758ac4699b63aa9a03a30274ea0061bd73d03 /MediaBrowser.Common/Updates/IInstallationManager.cs | |
| parent | a3bc82727a0213c8deb018fe8288e0ff10ef16b3 (diff) | |
Minor changes
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
| -rw-r--r-- | MediaBrowser.Common/Updates/IInstallationManager.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs index a5025aee9..4b4030bc2 100644 --- a/MediaBrowser.Common/Updates/IInstallationManager.cs +++ b/MediaBrowser.Common/Updates/IInstallationManager.cs @@ -5,7 +5,6 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using MediaBrowser.Common.Plugins; -using MediaBrowser.Model.Events; using MediaBrowser.Model.Updates; namespace MediaBrowser.Common.Updates @@ -46,7 +45,7 @@ namespace MediaBrowser.Common.Updates /// <param name="manifest">The URL to query.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task{IReadOnlyList{PackageInfo}}.</returns> - Task<IEnumerable<PackageInfo>> GetPackages(string manifest, CancellationToken cancellationToken = default); + Task<IReadOnlyList<PackageInfo>> GetPackages(string manifest, CancellationToken cancellationToken = default); /// <summary> /// Gets all available packages. |
