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

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Core.Configuration;
namespace NzbDrone.Core.Update
@@ -24,7 +23,7 @@ namespace NzbDrone.Core.Update
public List<UpdatePackage> GetRecentUpdatePackages()
{
var branch = _configFileProvider.Branch;
return _updatePackageProvider.GetRecentUpdates(branch, BuildInfo.Version.Major);
return _updatePackageProvider.GetRecentUpdates(branch);
}
}
}