lisak
lisak

Reputation: 21981

eclipse debugger - stepping over only one method within another

how come that when the debugger pointer is on this line " object1.method1(object2.method2()); " stepping over skips both of the methods, instead of just the method2 ? I always have to step into the method2 if I want then to step into method1. Usually method2 is some kind of low level stuff I'm not interested in.

Upvotes: 1

Views: 101

Answers (1)

Eugene Kuleshov
Eugene Kuleshov

Reputation: 31795

Point the cursor on "method1" and hit Ctrl-F5 (step into selection), or use Run / Step Into Selection menu, or Ctrl+Alt-Click on "method1".

Upvotes: 3

Related Questions