diff --git a/map/extrapolation/extrapolator.cpp b/map/extrapolation/extrapolator.cpp index d21bd37dcb..d0463e2c90 100644 --- a/map/extrapolation/extrapolator.cpp +++ b/map/extrapolation/extrapolator.cpp @@ -56,10 +56,7 @@ location::GpsInfo LinearExtrapolation(location::GpsInfo const & gpsInfo1, auto const timeBetweenPointsMs = static_cast((gpsInfo2.m_timestamp - gpsInfo1.m_timestamp) * 1000); if (timeBetweenPointsMs == 0) - { - ASSERT(false, ("Incorrect gps data")); return gpsInfo2; - } location::GpsInfo result = gpsInfo2; LinearExtrapolator const e(timeBetweenPointsMs, timeAfterPoint2Ms);