File tree 1 file changed +1
-4
lines changed
src/jdk.jdi/share/classes/com/sun/tools/example/debug/tty
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 1998, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1998, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
36
36
37
37
import com .sun .jdi .*;
38
38
import com .sun .jdi .connect .*;
39
- import com .sun .jdi .request .EventRequest ;
40
39
import com .sun .jdi .request .EventRequestManager ;
41
40
import com .sun .jdi .request .ThreadStartRequest ;
42
41
import com .sun .jdi .request .ThreadDeathRequest ;
@@ -470,8 +469,6 @@ private void setEventRequests(VirtualMachine vm) {
470
469
471
470
ThreadStartRequest tsr = erm .createThreadStartRequest ();
472
471
ThreadDeathRequest tdr = erm .createThreadDeathRequest ();
473
- tsr .setSuspendPolicy (EventRequest .SUSPEND_NONE );
474
- tdr .setSuspendPolicy (EventRequest .SUSPEND_NONE );
475
472
if (!trackVthreads ) {
476
473
tsr .addPlatformThreadsOnlyFilter ();
477
474
tdr .addPlatformThreadsOnlyFilter ();
You can’t perform that action at this time.
0 commit comments