Do you have the whole project somewhere? Seems there is indeed some deadlock in there. Would be nice to debug it...
/peter
Send from mobile.
One little snipped is missing. Though it's pretty simple too:
private void createTempLinks(Node from, Iterable<Node> list, Direction dir) {
for( Node node: list ) {
double dist = GeoCostEvaluator.distance(from, node);
if( dir == Direction.OUTGOING ) {
createWalkPath(from, node, dist);
} else {
createWalkPath(node, from, dist);
}
}
}
Do you have the whole project somewhere? Seems there is indeed some deadlock in there. Would be nice to debug it...
/peter
Send from mobile.
One little snipped is missing. Though it's pretty simple too: