File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 77 *
88 * SPDX-License-Identifier: EPL-2.0
99 *********************************************************************/
10- import { ExtensionContext , commands , window , debug } from 'vscode' ;
10+ import { ExtensionContext , commands , window } from 'vscode' ;
1111import { MemoryServer } from './memory/server/MemoryServer' ;
1212export { MemoryServer } from './memory/server/MemoryServer' ;
1313import { ResumeAllSession } from './ResumeAllSession' ;
@@ -23,14 +23,6 @@ export function activate(context: ExtensionContext) {
2323 new SuspendAllSession ( context ) ;
2424 new CustomReset ( context ) ;
2525
26- debug . onDidReceiveDebugSessionCustomEvent ( event => {
27- if ( event . event === "cdt-gdb-adapter/UpdateBreakpointView" ) {
28- const bps = debug . breakpoints ;
29- debug . removeBreakpoints ( bps ) ;
30- debug . addBreakpoints ( bps ) ;
31- }
32- } ) ;
33-
3426 context . subscriptions . push (
3527 commands . registerCommand ( 'cdt.debug.askProgramPath' , ( _config ) => {
3628 return window . showInputBox ( {
You can’t perform that action at this time.
0 commit comments