File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/vs/workbench/contrib/tasks/browser Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,6 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
223
223
224
224
protected _outputChannel : IOutputChannel ;
225
225
protected readonly _onDidStateChange : Emitter < ITaskEvent > ;
226
- private _waitForOneSupportedExecution : Promise < void > ;
227
226
private _waitForAllSupportedExecutions : Promise < void > ;
228
227
private _onDidRegisterSupportedExecutions : Emitter < void > = new Emitter ( ) ;
229
228
private _onDidRegisterAllSupportedExecutions : Emitter < void > = new Emitter ( ) ;
@@ -335,9 +334,6 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
335
334
this . _setPersistentTask ( e . __task ) ;
336
335
}
337
336
} ) ) ;
338
- this . _waitForOneSupportedExecution = new Promise ( resolve => {
339
- once ( this . _onDidRegisterSupportedExecutions . event ) ( ( ) => resolve ( ) ) ;
340
- } ) ;
341
337
this . _waitForAllSupportedExecutions = new Promise ( resolve => {
342
338
once ( this . _onDidRegisterAllSupportedExecutions . event ) ( ( ) => resolve ( ) ) ;
343
339
} ) ;
You can’t perform that action at this time.
0 commit comments