Reputation: 51039
From time to time I meeting an issue, when I can't trace into some methods. I have breakpoint on method call, it is triggered, then I press F7
, and then instead of tracing into the method, execution pointer just jumps to the next line.
Can general understanding of such situation be formulated?
I think this is somehow related to multithreading.
Upvotes: 0
Views: 44
Reputation: 5802
Try Alt-Shift-F7 (Force Step Into).
Maybe you are trying to step into JDK code?
There is a configurable list of ignored class/package names at:
File (menu) -> Settings -> Build, Execution, Deployment -> Debugger -> Stepping -> Do not step into the classes
Upvotes: 1