We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75724c1 commit 94dd93cCopy full SHA for 94dd93c
adapter/src/main/kotlin/org/javacs/ktda/jdi/JDIDebuggee.kt
@@ -139,7 +139,10 @@ class JDIDebuggee(
139
?.firstOrNull() ?: return false
140
val request = vm.eventRequestManager()
141
.createBreakpointRequest(location)
142
- request?.enable()
+ ?.apply {
143
+ setSuspendPolicy(EventRequest.SUSPEND_EVENT_THREAD)
144
+ enable()
145
+ }
146
return request != null
147
} catch (e: AbsentInformationException) {
148
return false
0 commit comments