Skip method check for non-relevant positions (KT-19403)
#KT-19403 Fixed
This commit is contained in:
@@ -268,13 +268,13 @@ private fun DebugProcess.findTargetClasses(outerClass: ReferenceType, lineAt: In
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
val method = location.method()
|
|
||||||
if (method == null || DebuggerUtils.isSynthetic(method) || method.isBridge) {
|
|
||||||
// skip synthetic methods
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lineAt == locationLine) {
|
if (lineAt == locationLine) {
|
||||||
|
val method = location.method()
|
||||||
|
if (method == null || DebuggerUtils.isSynthetic(method) || method.isBridge) {
|
||||||
|
// skip synthetic methods
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
targetClasses += outerClass
|
targetClasses += outerClass
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user