|
|
|
|
|
by ajkjk
3428 days ago
|
|
The problem isn't breakpoints so much as stepping through them. You either step through the whole chained method at once, or have to set a breakpoint inside of it. Whereas with loops you can step through loop iterations easily with no additional work. |
|
But if you're really worried, set a breakpoint in each lambda (trivial in IntelliJ) and use continue instead of step over.