Skip to content

Commit aa6f361

Browse files
committed
#614: fix topToRemove bug
1 parent d4a928d commit aa6f361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/org.eclipse.embedcdt.debug.gdbjtag.core/src/org/eclipse/embedcdt/debug/gdbjtag/core/dsf/GnuMcuFinalLaunchSequence.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected String[] getExecutionOrder(String group) {
9999
if (GROUP_TOP_LEVEL.equals(group)) {
100100

101101
for (int i = 0; i < topToRemove.length; ++i) {
102-
int ix = orderList.indexOf(jtagToRemove[i]);
102+
int ix = orderList.indexOf(topToRemove[i]);
103103
if (ix >= 0) {
104104
orderList.remove(ix);
105105
}

0 commit comments

Comments
 (0)