diff --git a/src/extension.ts b/src/extension.ts index 1232bce..4c9c74d 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -7,7 +7,7 @@ * * SPDX-License-Identifier: EPL-2.0 *********************************************************************/ -import { ExtensionContext, commands, window, debug } from 'vscode'; +import { ExtensionContext, commands, window } from 'vscode'; import { MemoryServer } from './memory/server/MemoryServer'; export { MemoryServer } from './memory/server/MemoryServer'; import { ResumeAllSession } from './ResumeAllSession'; @@ -23,14 +23,6 @@ export function activate(context: ExtensionContext) { new SuspendAllSession(context); new CustomReset(context); - debug.onDidReceiveDebugSessionCustomEvent(event => { - if (event.event === "cdt-gdb-adapter/UpdateBreakpointView") { - const bps = debug.breakpoints; - debug.removeBreakpoints(bps); - debug.addBreakpoints(bps); - } - }); - context.subscriptions.push( commands.registerCommand('cdt.debug.askProgramPath', (_config) => { return window.showInputBox({