Skip to content

Commit

Permalink
#614: fix topToRemove bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Aug 27, 2024
1 parent d4a928d commit aa6f361
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected String[] getExecutionOrder(String group) {
if (GROUP_TOP_LEVEL.equals(group)) {

for (int i = 0; i < topToRemove.length; ++i) {
int ix = orderList.indexOf(jtagToRemove[i]);
int ix = orderList.indexOf(topToRemove[i]);
if (ix >= 0) {
orderList.remove(ix);
}
Expand Down

0 comments on commit aa6f361

Please sign in to comment.