Community
Participate
Working Groups
Running from HEAD. Setup: Show Logical Structures off in Variables View 1. debug testcase and stop at breakpoint 2. turn logical structure on 3. expand element list->[0] 4. turn logical structure off and then back on again You will see that list->[0] does not have a plus sign anymore while list->[1] continues to have the plus sign. public static void main(String[] args) { ArrayList list = new ArrayList(); list.add("a"); list.add("b"); String[] abc = new String[] {"a", "b", "c"}; System.out.println("abc"); // BREAKPOINT HERE }
If you expand list->[1] and then keep toggling the logical structures button, you will see that the Variables View starts to show invalid data. I will attach screen capture. It looks like the nodes are not properly replaced when turning logical structures on / off.
Created attachment 55926 [details] screen capture
This works now. I think it's a dup. *** This bug has been marked as a duplicate of bug 173898 ***