From 4aa4dde561e42ffeb74e93a4a8d4347d952b3abe Mon Sep 17 00:00:00 2001 From: Egor Ushakov Date: Wed, 19 Nov 2025 18:28:54 +0100 Subject: [PATCH] IDEA-382285 Groovy: cannot step into methods anymore GitOrigin-RevId: a421fe0c2df461e8562e82e32e2f393bc1d0da4f --- .../impl/actions/handlers/XDebuggerSmartStepIntoHandler.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/actions/handlers/XDebuggerSmartStepIntoHandler.kt b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/actions/handlers/XDebuggerSmartStepIntoHandler.kt index 1e29f341b64d..d1a10d6d27b3 100644 --- a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/actions/handlers/XDebuggerSmartStepIntoHandler.kt +++ b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/actions/handlers/XDebuggerSmartStepIntoHandler.kt @@ -129,8 +129,8 @@ internal open class XDebuggerSmartStepIntoHandler : XDebuggerProxySuspendedActio catch (ce: CancellationException) { throw ce } - catch (e: Throwable) { - LOG.error("Exception while smart step into, falling back to step into", e) + catch (_: Throwable) { + // TODO: need to show some error notification here, but currently we don't have a proper error handling mechanism session.stepInto(ignoreBreakpoints = false) } }