aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/IInstallationManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
-rw-r--r--MediaBrowser.Common/Updates/IInstallationManager.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs
index 4c8a6e959..0844c2d79 100644
--- a/MediaBrowser.Common/Updates/IInstallationManager.cs
+++ b/MediaBrowser.Common/Updates/IInstallationManager.cs
@@ -47,9 +47,7 @@ namespace MediaBrowser.Common.Updates
IEnumerable<PackageInfo> FilterPackages(
IEnumerable<PackageInfo> availablePackages,
string? name = null,
-#pragma warning disable CA1720 // Identifier contains type name
Guid? id = default,
-#pragma warning restore CA1720 // Identifier contains type name
Version? specificVersion = null);
/// <summary>
@@ -64,9 +62,7 @@ namespace MediaBrowser.Common.Updates
IEnumerable<InstallationInfo> GetCompatibleVersions(
IEnumerable<PackageInfo> availablePackages,
string? name = null,
-#pragma warning disable CA1720 // Identifier contains type name
Guid? id = default,
-#pragma warning restore CA1720 // Identifier contains type name
Version? minVersion = null,
Version? specificVersion = null);