matthiasblaesing commented on pull request #3158:
URL: https://github.com/apache/netbeans/pull/3158#issuecomment-921274837
@entlicher this breaks the visualization of the debugging state in the IDE
(and maybe other things not directly observable). I bisected the visual issue
shown below to this commit.
Consider this simple programm:
### Problem
```java
public class Main {
public static void main(String[] args) {
System.out.println("Line 1");
System.out.println("Line 2");
System.out.println("Line 3");
System.out.println("Line 4");
}
}
```
I have a line break point on the line with "Line 2" in it. I exect the IDE
to highlight that line when the break point is hit. I then expect the
highlighting to move when I single step through the execution. This does not
work anymore. With this merged:
Breakpoint hit:

One step further:

### How it should look
Breakpoint hit:

One step further:

Please have another look at this.
--
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