Added: A Huge Cleanup of old Series Code. (Let's pray nothing breaks :P) (#2589)

This commit is contained in:
Qstick
2018-03-14 16:41:36 -04:00
committed by Leonardo Galli
parent 8a6d67a6d7
commit 25e10e26e3
551 changed files with 2835 additions and 18867 deletions
@@ -8,15 +8,12 @@ using NzbDrone.Core.MediaFiles.Events;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.Qualities;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Movies;
namespace NzbDrone.Core.Notifications
{
public class NotificationService
: IHandle<EpisodeGrabbedEvent>,
IHandle<EpisodeDownloadedEvent>,
IHandle<SeriesRenamedEvent>,
IHandle<MovieRenamedEvent>,
: IHandle<MovieRenamedEvent>,
IHandle<MovieGrabbedEvent>,
IHandle<MovieDownloadedEvent>
@@ -68,11 +65,6 @@ namespace NzbDrone.Core.Notifications
return false;
}
public void Handle(EpisodeGrabbedEvent message)
{
throw new NotImplementedException("Remove Series/Season/Episode");
}
public void Handle(MovieGrabbedEvent message)
{
var grabMessage = new GrabMessage
@@ -98,11 +90,6 @@ namespace NzbDrone.Core.Notifications
}
}
public void Handle(EpisodeDownloadedEvent message)
{
throw new NotImplementedException("Remove Series/Season/Episode");
}
public void Handle(MovieDownloadedEvent message)
{
var downloadMessage = new DownloadMessage();
@@ -133,11 +120,6 @@ namespace NzbDrone.Core.Notifications
}
}
public void Handle(SeriesRenamedEvent message)
{
throw new NotImplementedException("Remove Series/Season/Episode");
}
public void Handle(MovieRenamedEvent message)
{
foreach (var notification in _notificationFactory.OnRenameEnabled())