Merge pull request #11214 from osmandapp/revert-11171-patch-1

Revert "Compute obstaclesTime before adding final segment"
This commit is contained in:
Vitaliy 2021-03-21 15:25:57 +02:00 committed by GitHub
commit d3b0c31bb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -457,10 +457,10 @@ public class BinaryRoutePlanner {
directionAllowed = false;
continue;
}
obstaclesTime += obstacle;
obstaclesTime += heightObstacle;
boolean alreadyVisited = checkIfOppositeSegmentWasVisited(ctx, reverseWaySearch, graphSegments, segment, oppositeSegments,
segmentPoint, segmentDist, obstaclesTime);
obstaclesTime += obstacle;
obstaclesTime += heightObstacle;
if (alreadyVisited) {
directionAllowed = false;
continue;