From b8d5c718429f1325111834b8b95698fc9c9ba47d Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Sat, 23 Feb 2013 02:57:11 -0500 Subject: type discovery without attributes --- .../ScheduledTasks/PeopleValidationTask.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Controller/ScheduledTasks/PeopleValidationTask.cs') diff --git a/MediaBrowser.Controller/ScheduledTasks/PeopleValidationTask.cs b/MediaBrowser.Controller/ScheduledTasks/PeopleValidationTask.cs index 2a91f0716..ee55ff2e9 100644 --- a/MediaBrowser.Controller/ScheduledTasks/PeopleValidationTask.cs +++ b/MediaBrowser.Controller/ScheduledTasks/PeopleValidationTask.cs @@ -1,7 +1,7 @@ using MediaBrowser.Common.ScheduledTasks; +using MediaBrowser.Model.Logging; using System; using System.Collections.Generic; -using System.ComponentModel.Composition; using System.Threading; using System.Threading.Tasks; @@ -10,9 +10,18 @@ namespace MediaBrowser.Controller.ScheduledTasks /// /// Class PeopleValidationTask /// - [Export(typeof(IScheduledTask))] public class PeopleValidationTask : BaseScheduledTask { + /// + /// Initializes a new instance of the class. + /// + /// The kernel. + /// + public PeopleValidationTask(Kernel kernel, ITaskManager taskManager, ILogger logger) + : base(kernel, taskManager, logger) + { + } + /// /// Creates the triggers that define when the task will run /// -- cgit v1.2.3