From b2b58a2fb62d01b36cf1eaaceefa66d3a5ed016f Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 1 Nov 2017 17:07:52 +0100 Subject: [PATCH] any cast to satisfy ts --- src/vs/workbench/parts/debug/electron-browser/debugService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index eb6f9766054..5545c956194 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -721,7 +721,7 @@ export class DebugService implements debug.IDebugService { }) ).then(() => wrapUpState(), err => { wrapUpState(); - return TPromise.wrapError(err); + return TPromise.wrapError(err); }); }) )));