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 5450ec4 commit 6230348Copy full SHA for 6230348
adapter/src/main/kotlin/org/javacs/ktda/adapter/KotlinDebugAdapter.kt
@@ -191,7 +191,7 @@ class KotlinDebugAdapter(
191
val hostName = (args["hostName"] as? String)
192
?: throw missingRequestArgument("attach", "hostName")
193
194
- val port = (args["port"] as? Double)?.toInt()
+ val port = (args["port"] as? Int)
195
?: throw missingRequestArgument("attach", "port")
196
197
val timeout = (args["timeout"] as? Double)?.toInt()
0 commit comments