Remove unneeded class

This commit is contained in:
Joshua Askharoun
2021-04-04 02:23:01 -05:00
parent 140eefc07d
commit d4cc2ab22e
-19
View File
@@ -185,23 +185,4 @@ namespace ZuneUIXTools
textEditor.Load(DocumentPath);
}
}
internal class MyScheduler : TaskScheduler
{
protected override System.Collections.Generic.IEnumerable<Task> GetScheduledTasks()
{
return Enumerable.Empty<Task>();
}
protected override void QueueTask(Task task)
{
base.TryExecuteTask(task);
}
protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued)
{
base.TryExecuteTask(task);
return true;
}
}
}