Community
Participate
Working Groups
Build Identifier: M20110909-1335 Debugger does not consider end-of-block brace bracket line as valid locations. The effect is, I am unable to run debugger to end of a for loop without pacing thro thousands/gazillions of iterations to find out the consequences on the variables of the loop. Reproducible: Always Steps to Reproduce: 1. Put a break point at java.util.Collections, at line 158 2. Try run to line 164. Debugger responds with line not a valid location. 3. Try run to line 165. Debugger responds with line not a valid location. 4. Try to place a breakpoint at line 164 or 165. Debugger does not consider them as valid locations. [code] 157 public static <T> void sort(List<T> list, Comparator<? super T> c) { 158 Object[] a = list.toArray(); 159 Arrays.sort(a, (Comparator)c); 160 ListIterator i = list.listIterator(); 161 for (int j=0; j<a.length; j++) { 162 i.next(); 163 i.set(a[j]); 164 } 165 } [/code]
Conditional breakpoint j==a.length-1 did not work.
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie.