From 8c4b8c41666c17968c6f0b9ba18d86ad6bcda721 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 8 Apr 2022 23:11:08 +0200 Subject: [PATCH] [android] Removed unnecessary call to TrafficManager Signed-off-by: Alexander Borsuk --- android/src/com/mapswithme/maps/MwmActivity.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index 1932b81ed2..4b376c1792 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -63,7 +63,6 @@ import com.mapswithme.maps.maplayer.ToggleMapLayerFragment; import com.mapswithme.maps.maplayer.isolines.IsolinesManager; import com.mapswithme.maps.maplayer.isolines.IsolinesState; import com.mapswithme.maps.maplayer.subway.SubwayManager; -import com.mapswithme.maps.maplayer.traffic.TrafficManager; import com.mapswithme.maps.routing.NavigationController; import com.mapswithme.maps.routing.RoutePointInfo; import com.mapswithme.maps.routing.RoutingBottomMenuListener; @@ -1064,7 +1063,7 @@ public class MwmActivity extends BaseMwmFragmentActivity { super.onSafeDestroy(); mNavigationController.destroy(); - TrafficManager.INSTANCE.detachAll(); + //TrafficManager.INSTANCE.detachAll(); mPlacePageController.destroy(); }