mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
removed dead code
This commit is contained in:
@@ -16,7 +16,6 @@ namespace NzbDrone.Core.Download
|
||||
{
|
||||
public interface IDownloadTrackingService
|
||||
{
|
||||
TrackedDownload[] GetTrackedDownloads();
|
||||
TrackedDownload[] GetCompletedDownloads();
|
||||
TrackedDownload[] GetQueuedDownloads();
|
||||
|
||||
@@ -64,7 +63,7 @@ namespace NzbDrone.Core.Download
|
||||
_trackedDownloadCache = cacheManager.GetCache<TrackedDownload[]>(GetType());
|
||||
}
|
||||
|
||||
public TrackedDownload[] GetTrackedDownloads()
|
||||
private TrackedDownload[] GetTrackedDownloads()
|
||||
{
|
||||
return _trackedDownloadCache.Get("tracked", () => new TrackedDownload[0]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user