Resharper code cleanup

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

View file

@ -1,13 +1,12 @@
using System;
using System.Net;
using System.Net;
namespace NzbDrone.Core.Providers
{
class HttpProvider : IHttpProvider
internal class HttpProvider : IHttpProvider
{
public string DownloadString(string request)
{
return new WebClient().DownloadString(request);
}
}
}
}