removed dead code

This commit is contained in:
Keivan Beigi
2014-10-13 14:11:35 -07:00
parent 907023ca10
commit 28f7e256b2
15 changed files with 17 additions and 69 deletions
@@ -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]);
}