Skip to content

Commit

Permalink
Fix A* function on multiple executions
Browse files Browse the repository at this point in the history
Resolves: #7103
  • Loading branch information
luigidellaquila committed Jan 31, 2017
1 parent f79c1c9 commit f926b82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class OGraphFunctionFactory implements OSQLFunctionFactory {
static {
register(OSQLFunctionGremlin.NAME, OSQLFunctionGremlin.class);
register(OSQLFunctionDijkstra.NAME, new OSQLFunctionDijkstra());
register(OSQLFunctionAstar.NAME, new OSQLFunctionAstar());
register(OSQLFunctionAstar.NAME, OSQLFunctionAstar.class);
register(OSQLFunctionShortestPath.NAME, new OSQLFunctionShortestPath());

register(OSQLFunctionLabel.NAME, new OSQLFunctionLabel());
Expand Down

0 comments on commit f926b82

Please sign in to comment.