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