removed dead code

This commit is contained in:
Keivan Beigi
2014-10-03 16:29:52 -07:00
parent 7b49669b95
commit 6a743a8792
19 changed files with 15 additions and 342 deletions
+2 -7
View File
@@ -12,12 +12,7 @@ using NzbDrone.Core.Messaging.Events;
namespace NzbDrone.Core.Indexers
{
public interface IRssSyncService
{
List<DownloadDecision> Sync();
}
public class RssSyncService : IRssSyncService, IExecute<RssSyncCommand>
public class RssSyncService : IExecute<RssSyncCommand>
{
private readonly IFetchAndParseRss _rssFetcherAndParser;
private readonly IMakeDownloadDecision _downloadDecisionMaker;
@@ -45,7 +40,7 @@ namespace NzbDrone.Core.Indexers
}
public List<DownloadDecision> Sync()
private List<DownloadDecision> Sync()
{
_logger.ProgressInfo("Starting RSS Sync");