aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-08-27 17:10:35 -0400
committerGitHub <noreply@github.com>2016-08-27 17:10:35 -0400
commit81765ff29f624fd34e1abe3c7bb8149bbb001aef (patch)
tree2e6ca83c4d08c5b676e12edae947e635d290bc3f /MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
parent17df76e46a4f0537bc57bfc2e56d9877af1bc93a (diff)
parent803a96cb4e6e2643f683f43c4dd9bbf6c2cc0f68 (diff)
Merge pull request #2089 from softworkz/OrganizeFixes3
AutoorganizeLog: Fixed error when log empty; re-introduced full reload on task completion
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>