Change line width

This commit is contained in:
2020-04-03 13:06:11 +03:00
parent 694a3fffb4
commit 7f5cdf2cc3
9 changed files with 16 additions and 60 deletions

View File

@ -8,10 +8,7 @@ export function registerTask(constructor: Function) {
taskMap[constructor.name] = constructor;
}
export function createTask(
name: string,
scheduler: Scheduler
): TaskController | undefined {
export function createTask(name: string, scheduler: Scheduler): TaskController | undefined {
const storedFunction = taskMap[name];
if (storedFunction === undefined) {
return undefined;