aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-08-28 15:45:29 -0400
committerGitHub <noreply@github.com>2016-08-28 15:45:29 -0400
commit3b9a4be8f0691bc82297062fdb4764d8a1c10118 (patch)
tree2beb71cb849fb1c003073a123f8dcba398845aa2 /MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
parent21a8dc77c322949339562526d6acbd02f9ece32f (diff)
parent30f30ae9f3ba32dd02b89dcc03a9066616717f26 (diff)
Merge pull request #2119 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs')
-rw-r--r--MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs b/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
index dcd3a3025..ab2aa761b 100644
--- a/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
+++ b/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
@@ -430,17 +430,6 @@ namespace MediaBrowser.Common.Implementations.ScheduledTasks
}
/// <summary>
- /// Executes the task.
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <param name="progress">The progress.</param>
- /// <returns>Task.</returns>
- private Task ExecuteTask(CancellationToken cancellationToken, IProgress<double> progress)
- {
- return Task.Run(async () => await ScheduledTask.Execute(cancellationToken, progress).ConfigureAwait(false), cancellationToken);
- }
-
- /// <summary>
/// Progress_s the progress changed.
/// </summary>
/// <param name="sender">The sender.</param>