Is it possible to go to any next line during debugging in eclipse?
This will help debug situations where I have a breakpoint when starting a method, I check something there, and below there is a for loop that I want to quickly execute to see all the changes made immediately.
In the above scenario, I set a breakpoint below the for loop, by pressing F8, delete the breakpoint after stopping the execution, which is rather cumbersome.
Is there a better way to do the above?
source
share