matthiasblaesing commented on PR #9285:
URL: https://github.com/apache/netbeans/pull/9285#issuecomment-4118756709
Yes you understood my point correctly. I'm not opposed to multiple
breakpoints in general, but from a UI/UX perspective I think making the options
available in the line break point might be more realistic as the UI impact
would be smaller.
I think it would be good if the "lamdba" "condition" would allow to select
multiple lambdas, for this example (in reality I expect lambdas with more
interesting content in it :smile:):
```java
public class Test3 {
public static void main(String[] args) {
List.of("a", "b", "c")
.stream()
.map(s -> s.trim()).filter(s -> !s.isEmpty()).forEach(s ->
System.err.println(s));
}
}
it might make sense to break on the first and last lamdba. That way you can
observe what goes into the stream pipeline and what reaches the end.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists