Skip to content

Commit

Permalink
fix citiususc#141 : SearchResult prints actions in reversed order
Browse files Browse the repository at this point in the history
Removed redundant reversion of the list of actions in class
Algorithm.SearchResult.
  • Loading branch information
gonzalezsieira authored and michaelhaaf committed Dec 2, 2015
1 parent 9a3e903 commit 0ad8aa5
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ public static <A, N extends Node<A,?,N>> List<A> recoverActionPath(N node){
for(N n : node.path()){
if (n.action() != null) actions.add(n.action());
}
Collections.reverse(actions);
return actions;
}
}

0 comments on commit 0ad8aa5

Please sign in to comment.