Resharper code cleanup

This commit is contained in:
Keivan
2010-09-27 22:58:49 -07:00
parent c7286863b0
commit d00744aafa
11 changed files with 46 additions and 130 deletions

View File

@@ -1,10 +1,8 @@
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Providers
namespace NzbDrone.Core.Providers
{
public interface IDownloadProvider
{
bool AddByUrl(string url, string title); //Should accept something other than string (NzbInfo?) returns success or failure
bool IsInQueue(string title);//Should accept something other than string (Episode?) returns bool
bool IsInQueue(string title); //Should accept something other than string (Episode?) returns bool
}
}
}