From 44bb192ce0e286ced703394f733ca033b489ebc5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 9 Feb 2014 18:08:01 -0500 Subject: update wizard function of enable/disable local metadata saving --- MediaBrowser.Controller/Library/ILibraryManager.cs | 6 +----- .../Library/ILibraryPrescanTask.cs | 20 -------------------- .../Library/IPeoplePrescanTask.cs | 20 -------------------- 3 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 MediaBrowser.Controller/Library/ILibraryPrescanTask.cs delete mode 100644 MediaBrowser.Controller/Library/IPeoplePrescanTask.cs (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index d8ba019db..7c803e651 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -162,17 +162,13 @@ namespace MediaBrowser.Controller.Library /// The resolvers. /// The intro providers. /// The item comparers. - /// The prescan tasks. /// The postscan tasks. - /// The people prescan tasks. void AddParts(IEnumerable rules, IEnumerable pluginFolders, IEnumerable resolvers, IEnumerable introProviders, IEnumerable itemComparers, - IEnumerable prescanTasks, - IEnumerable postscanTasks, - IEnumerable peoplePrescanTasks); + IEnumerable postscanTasks); /// /// Sorts the specified items. diff --git a/MediaBrowser.Controller/Library/ILibraryPrescanTask.cs b/MediaBrowser.Controller/Library/ILibraryPrescanTask.cs deleted file mode 100644 index 6a48ba777..000000000 --- a/MediaBrowser.Controller/Library/ILibraryPrescanTask.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Library -{ - /// - /// An interface for tasks that run prior to the media library scan - /// - public interface ILibraryPrescanTask - { - /// - /// Runs the specified progress. - /// - /// The progress. - /// The cancellation token. - /// Task. - Task Run(IProgress progress, CancellationToken cancellationToken); - } -} diff --git a/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs b/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs deleted file mode 100644 index 04d179bae..000000000 --- a/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Library -{ - /// - /// Interface IPeoplePrescanTask - /// - public interface IPeoplePrescanTask - { - /// - /// Runs the specified progress. - /// - /// The progress. - /// The cancellation token. - /// Task. - Task Run(IProgress progress, CancellationToken cancellationToken); - } -} -- cgit v1.2.3