Reputation: 291
When I debug my Java EE application in the Eclipse IDE, I don't see a "Step out" option in the debugger. I only see "Step over", "Step into" and "Step return".
When I have a huge amount of lines I want that the debugger only stops at my breakpoints, so "Step out" is my solution, right?
Upvotes: 4
Views: 3339
Reputation: 70909
It's the little arrow icon that looks like it is originating from two broken blue lines, moving upwards, and then to the right.
You can see it in the Java debugging perspective.
Upvotes: 1
Reputation: 500357
"Step Return" is the command you're looking for. You can press F7
to invoke it.
From the Eclipse manual:
Select the Step Return [
] command to return from a method which has been stepped into. Even though we return from the method, the remainder of the code inside the method will be executed normally.
Upvotes: 6