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:
   
![image](https://user-images.githubusercontent.com/2179736/133689054-0367307d-795d-4b42-a59c-cd866aaeb8fe.png)
   
   One step further:
   
![image](https://user-images.githubusercontent.com/2179736/133689001-7bfb7360-b32b-4262-8994-b68858181d2a.png)
   
   
   ### How it should look
   
   Breakpoint hit:
   
![image](https://user-images.githubusercontent.com/2179736/133689376-2142e62d-1434-4439-8d5a-0ca55fe9f9a8.png)
   
   One step further:
   
![image](https://user-images.githubusercontent.com/2179736/133689342-b9c65954-abc4-4cee-8229-f864f512ad07.png)
   
   
   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

Reply via email to