aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
diff options
context:
space:
mode:
authorsoftworkz <softworkz@hotmail.com>2016-08-22 23:52:54 +0200
committersoftworkz <softworkz@hotmail.com>2016-08-27 03:51:14 +0200
commitcf64c404135381a5e56d386003eb245386428756 (patch)
treef8c7da0a98c3ff3d33cc2b3891ffb3ee01df1298 /MediaBrowser.Common.Implementations/ScheduledTasks/ScheduledTaskWorker.cs
parentae331babed85ad55eb67641fb17f9829f2a3a8bc (diff)
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>