From dc184601a80b6f3fd62ff9913f5d877519f1f281 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 2 Oct 2020 14:59:39 -0700 Subject: [PATCH] Some cleanup of things marked for removal in v3 --- src/NzbDrone.Api/Indexers/ReleaseResource.cs | 3 +-- .../DownloadClientTests/SabnzbdTests/SabnzbdFixture.cs | 1 - .../Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/NzbDrone.Api/Indexers/ReleaseResource.cs b/src/NzbDrone.Api/Indexers/ReleaseResource.cs index 17656f4f0..eb67b02b6 100644 --- a/src/NzbDrone.Api/Indexers/ReleaseResource.cs +++ b/src/NzbDrone.Api/Indexers/ReleaseResource.cs @@ -54,8 +54,7 @@ namespace NzbDrone.Api.Indexers public DownloadProtocol Protocol { get; set; } - // TODO: Remove in v3 - // Used to support the original Release Push implementation + // Used to support the original Release Push implementation, removed in v3 // JsonIgnore so we don't serialize it, but can still parse it [JsonIgnore] public DownloadProtocol DownloadProtocol diff --git a/src/NzbDrone.Core.Test/Download/DownloadClientTests/SabnzbdTests/SabnzbdFixture.cs b/src/NzbDrone.Core.Test/Download/DownloadClientTests/SabnzbdTests/SabnzbdFixture.cs index e42758155..b95e189cc 100644 --- a/src/NzbDrone.Core.Test/Download/DownloadClientTests/SabnzbdTests/SabnzbdFixture.cs +++ b/src/NzbDrone.Core.Test/Download/DownloadClientTests/SabnzbdTests/SabnzbdFixture.cs @@ -216,7 +216,6 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabnzbdTests [TestCase(SabnzbdDownloadStatus.Checking)] [TestCase(SabnzbdDownloadStatus.Downloading)] [TestCase(SabnzbdDownloadStatus.QuickCheck)] - [TestCase(SabnzbdDownloadStatus.ToPP)] [TestCase(SabnzbdDownloadStatus.Verifying)] [TestCase(SabnzbdDownloadStatus.Repairing)] [TestCase(SabnzbdDownloadStatus.Fetching)] diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs index 71eb9f755..499d5d056 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs @@ -7,7 +7,6 @@ Paused, Checking, Downloading, - ToPP, // TODO: Remove in v3 QuickCheck, Verifying, Repairing,