Skip to content

Commit

Permalink
Subflows should be added to the end of the list in the test harness
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Dec 4, 2013
1 parent 9ca1378 commit f8eb42d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public String next() throws Exception
successor = successors[0];
for (int i = 1; i < successors.length; i++)
{
subflows.push(successors[i]);
subflows.add(successors[i]);
}
}
UIBuilderImpl nextBuilder = createBuilder((Class<W>) successor);
Expand Down

0 comments on commit f8eb42d

Please sign in to comment.