Merge pull request #9926 from osmandapp/9853_fix_calc_time

#9853 fix calc time in android
This commit is contained in:
vshcherb 2020-10-02 11:15:16 +03:00 committed by GitHub
commit db95d04d73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {