From 322e9f3c5176b31838b36c170e0f42e0e6c30718 Mon Sep 17 00:00:00 2001 From: Daniel Underwood Date: Fri, 4 Aug 2017 00:02:50 -0400 Subject: [PATCH] Clean up remaining codacy issues --- src/NzbDrone.Core/Indexers/RssIndexerRequestGenerator.cs | 4 ++-- .../Indexers/TorrentRss/TorrentRssIndexerRequestGenerator.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/RssIndexerRequestGenerator.cs b/src/NzbDrone.Core/Indexers/RssIndexerRequestGenerator.cs index 5a157d3a9..f00e7e740 100644 --- a/src/NzbDrone.Core/Indexers/RssIndexerRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/RssIndexerRequestGenerator.cs @@ -47,12 +47,12 @@ namespace NzbDrone.Core.Indexers return new IndexerPageableRequestChain(); } - public IndexerPageableRequestChain GetSearchRequests(AlbumSearchCriteria searchCriteria) + public virtual IndexerPageableRequestChain GetSearchRequests(AlbumSearchCriteria searchCriteria) { throw new System.NotImplementedException(); } - public IndexerPageableRequestChain GetSearchRequests(ArtistSearchCriteria searchCriteria) + public virtual IndexerPageableRequestChain GetSearchRequests(ArtistSearchCriteria searchCriteria) { throw new System.NotImplementedException(); } diff --git a/src/NzbDrone.Core/Indexers/TorrentRss/TorrentRssIndexerRequestGenerator.cs b/src/NzbDrone.Core/Indexers/TorrentRss/TorrentRssIndexerRequestGenerator.cs index be6088f72..f791c0cea 100644 --- a/src/NzbDrone.Core/Indexers/TorrentRss/TorrentRssIndexerRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/TorrentRss/TorrentRssIndexerRequestGenerator.cs @@ -48,7 +48,7 @@ namespace NzbDrone.Core.Indexers.TorrentRss throw new System.NotImplementedException(); } - public IndexerPageableRequestChain GetSearchRequests(ArtistSearchCriteria searchCriteria) + public virtual IndexerPageableRequestChain GetSearchRequests(ArtistSearchCriteria searchCriteria) { throw new System.NotImplementedException(); }