From c0d470e3bb7ee61585f2cce69d12981107ad8283 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 17 Apr 2013 22:28:20 -0700 Subject: [PATCH] Removed empty constructors from jobs --- NzbDrone.Core/Jobs/Implementations/DiskScanJob.cs | 4 ---- NzbDrone.Core/Jobs/Implementations/PostDownloadScanJob.cs | 4 ---- NzbDrone.Core/Jobs/Implementations/UpdateInfoJob.cs | 5 ----- NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs | 5 ----- NzbDrone.Core/Jobs/Implementations/XemUpdateJob.cs | 5 ----- 5 files changed, 23 deletions(-) diff --git a/NzbDrone.Core/Jobs/Implementations/DiskScanJob.cs b/NzbDrone.Core/Jobs/Implementations/DiskScanJob.cs index addc282b4..0a9daa5b7 100644 --- a/NzbDrone.Core/Jobs/Implementations/DiskScanJob.cs +++ b/NzbDrone.Core/Jobs/Implementations/DiskScanJob.cs @@ -25,10 +25,6 @@ public DiskScanJob(IDiskScanService diskScanService, _seriesRepository = seriesRepository; } - public DiskScanJob() - { - } - public string Name { get { return "Media File Scan"; } diff --git a/NzbDrone.Core/Jobs/Implementations/PostDownloadScanJob.cs b/NzbDrone.Core/Jobs/Implementations/PostDownloadScanJob.cs index 07ecd6247..b81a94ec3 100644 --- a/NzbDrone.Core/Jobs/Implementations/PostDownloadScanJob.cs +++ b/NzbDrone.Core/Jobs/Implementations/PostDownloadScanJob.cs @@ -23,10 +23,6 @@ public PostDownloadScanJob(IDropFolderImportService dropFolderImportService,ICon _diskProvider = diskProvider; } - public PostDownloadScanJob() - { - } - public string Name { get { return "Drop folder monitor"; } diff --git a/NzbDrone.Core/Jobs/Implementations/UpdateInfoJob.cs b/NzbDrone.Core/Jobs/Implementations/UpdateInfoJob.cs index c3a09a690..eb1b5b1c2 100644 --- a/NzbDrone.Core/Jobs/Implementations/UpdateInfoJob.cs +++ b/NzbDrone.Core/Jobs/Implementations/UpdateInfoJob.cs @@ -29,11 +29,6 @@ public UpdateInfoJob(ISeriesService seriesService, IEpisodeService episodeServic _seriesRepository = seriesRepository; } - public UpdateInfoJob() - { - - } - public string Name { get { return "Update Episode Info"; } diff --git a/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs b/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs index 8a96fc301..b043a18a6 100644 --- a/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs +++ b/NzbDrone.Core/Jobs/Implementations/UpdateSceneMappingsJob.cs @@ -15,11 +15,6 @@ public UpdateSceneMappingsJob(SceneMappingService sceneNameMappingService) _sceneNameMappingService = sceneNameMappingService; } - public UpdateSceneMappingsJob() - { - - } - public string Name { get { return "Update Scene Mappings"; } diff --git a/NzbDrone.Core/Jobs/Implementations/XemUpdateJob.cs b/NzbDrone.Core/Jobs/Implementations/XemUpdateJob.cs index 6372c3f08..80d3aecbb 100644 --- a/NzbDrone.Core/Jobs/Implementations/XemUpdateJob.cs +++ b/NzbDrone.Core/Jobs/Implementations/XemUpdateJob.cs @@ -17,11 +17,6 @@ public XemUpdateJob(XemProvider xemProvider) _xemProvider = xemProvider; } - public XemUpdateJob() - { - - } - public string Name { get { return "XEM Update"; }