I want to set a debug breakpoint in IntelliJ Idea that is only active, if another previous breakpoint was activated. For example i have a breakpoint B1 on line 10, and another breakpoint B2 on line 20. Even if B2s condition is true, the debugger should only halt if B1s condition was true before B2s.
Is something like this possible in Idea?
Update:
Currently i'm working with this workaround:
I hope there is a cleaner way to do this :)
You can do that in the View Breakpoints...
view:
In your case you will first have to set a conditional breakpoint on B1 so that when it is hit then and only then B2 will be triggered.