Reputation: 21981
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
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