File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
adapter/src/main/kotlin/org/javacs/ktda Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import org.javacs.ktda.core.launch.AttachConfiguration
32
32
import org.javacs.ktda.core.breakpoint.ExceptionBreakpoint
33
33
import org.javacs.ktda.classpath.debugClassPathResolver
34
34
import org.javacs.ktda.classpath.findValidKtFilePath
35
- import org.javacs.ktda.jdi.JDIDebuggee
36
35
37
36
/* * The debug server interface conforming to the Debug Adapter Protocol */
38
37
class KotlinDebugAdapter (
@@ -272,7 +271,7 @@ class KotlinDebugAdapter(
272
271
converter.variablesPool.clear()
273
272
converter.stackFramePool.removeAllOwnedBy(args.threadId)
274
273
// See the issue: https://github.com/fwcd/kotlin-debug-adapter/pull/40
275
- debuggee?.resumeVm ()
274
+ debuggee?.resume ()
276
275
}
277
276
ContinueResponse ().apply {
278
277
allThreadsContinued = false
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ interface Debuggee {
18
18
19
19
fun exit ()
20
20
21
- fun resumeVm ()
21
+ fun resume ()
22
22
23
23
fun updateThreads ()
24
24
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class JDIDebuggee(
133
133
}
134
134
}
135
135
136
- override fun resumeVm () {
136
+ override fun resume () {
137
137
vm.resume()
138
138
}
139
139
You can’t perform that action at this time.
0 commit comments