From f5b9cf9062f26680445b512111e8f43f9c6f25c3 Mon Sep 17 00:00:00 2001 From: Alexander Marchuk Date: Fri, 29 Apr 2016 15:34:03 +0300 Subject: [PATCH] [android] fix: Review fixes. --- android/src/com/mapswithme/maps/MwmActivity.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index 79f590cdc9..d40a5f3d73 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -120,8 +120,6 @@ public class MwmActivity extends BaseMwmFragmentActivity private final Stack mTasks = new Stack<>(); private final StoragePathManager mPathManager = new StoragePathManager(); - private boolean mFirstStart; - private View mMapFrame; private MapFragment mMapFragment; @@ -150,6 +148,9 @@ public class MwmActivity extends BaseMwmFragmentActivity private FloatingSearchToolbarController mSearchController; private LastCompassData mLastCompassData; + // The first launch of application ever - onboarding screen will be shown. + private boolean mFirstStart; + // The first launch after process started. Used to skip "Not follow, no position" state and to run locator. private static boolean sColdStart = true; private static boolean sLocationStopped;