File tree Expand file tree Collapse file tree
debugger/browser-debugger-impl/src/main/java/consulo/javascript/debugger/browser/process Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636import java .util .HashMap ;
3737import java .util .List ;
3838import java .util .Map ;
39- import java .util .concurrent .Executor ;
39+ import java .util .concurrent .ExecutorService ;
4040import java .util .function .Consumer ;
4141
4242/**
@@ -54,7 +54,7 @@ public class CDTProcess extends XDebugProcess {
5454
5555 private ChromeDevTools myChromeDevTools ;
5656
57- private Executor myExecutor ;
57+ private ExecutorService myExecutor ;
5858
5959 private Map <String , CDTBreakpointInfo > myBreakpoints = new HashMap <>();
6060
@@ -216,7 +216,8 @@ public void startStepOut(@Nullable XSuspendContext context) {
216216
217217 @ Override
218218 public void stop () {
219- // TODO !myVm.detach();
219+ myExecutor .shutdown ();
220+
220221 myBreakpoints .clear ();
221222
222223 Application .get ().runReadAction (new Runnable () {
You can’t perform that action at this time.
0 commit comments