#9853 fix calc time in android
This commit is contained in:
parent
02b9af6782
commit
b594076f14
1 changed files with 1 additions and 1 deletions
|
@ -739,7 +739,7 @@ public class RoutePlannerFrontEnd {
|
|||
res = searchRouteImpl(ctx, points, routeDirection);
|
||||
}
|
||||
if (ctx.calculationProgress != null) {
|
||||
ctx.calculationProgress.timeToCalculate += (System.nanoTime() - timeToCalculate);
|
||||
ctx.calculationProgress.timeToCalculate = (System.nanoTime() - timeToCalculate);
|
||||
}
|
||||
BinaryRoutePlanner.printDebugMemoryInformation(ctx);
|
||||
if (res != null) {
|
||||
|
|
Loading…
Reference in a new issue