Skip to content

Commit

Permalink
Fixing Turn Restriction NP (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeGost authored Aug 2, 2018
1 parent 8e605ec commit bf05984
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ private TurnRestriction(final Relation relation)
// being put into the route, build a route using all unique edges once. This method
// attempts to build a route from from the end of from to start of too.
viaMember = Route.buildFullRouteIgnoringReverseEdges(viaEdges,
this.from.end().end(), this.too.start().start());
fromMember.end().end(), toMember.start().start());
}
}
catch (final CoreException e)
Expand Down

0 comments on commit bf05984

Please sign in to comment.