Popping a Call From the Call Stack

See Also 

You can change the execution of your program so that the next statement to be executed is one of the calls made earlier on the stack. In general, popping, or removing, a call from the call stack does not undo any effects that the call caused. For example, if a call opened a database connection and then that call is removed, the database connection will remain open.

You can only pop a call if the program being debugged is paused.

To make a frame in the call stack the current frame:

To remove a series of frames from the call stack:

To pop the most recent call from the call stack:

See Also
Using the Call Stack

Copyright © 2015, Oracle and/or its affiliates. All rights reserved.