Skip to content

Commit 76fade5

Browse files
committed
* Fix the return value if catch AbsentInformationException.
1 parent 4268081 commit 76fade5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adapter/src/main/kotlin/org/javacs/ktda/jdi/JDIDebuggee.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ class JDIDebuggee(
129129
}
130130
return request != null
131131
} catch (e: AbsentInformationException) {
132-
// Ignore exception.
133-
return true
132+
return false
134133
}
135134
}
136135

0 commit comments

Comments
 (0)