From 172027552c5607bb7c36cd2b87fe23c21ba4103f Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 17 Jun 2020 12:11:09 +0200 Subject: [PATCH] fixes #100364 --- src/vs/workbench/contrib/debug/browser/debugService.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vs/workbench/contrib/debug/browser/debugService.ts b/src/vs/workbench/contrib/debug/browser/debugService.ts index f884a36d4bb..dd504fba250 100644 --- a/src/vs/workbench/contrib/debug/browser/debugService.ts +++ b/src/vs/workbench/contrib/debug/browser/debugService.ts @@ -376,8 +376,6 @@ export class DebugService implements IDebugService { config!.noDebug = true; } else if (options && typeof options.noDebug === 'undefined' && options.parentSession && options.parentSession.configuration.noDebug) { config!.noDebug = true; - } else { - delete config!.noDebug; } const unresolvedConfig = deepClone(config); -- GitLab