Rename mUpTime to mStartTime
This is a follow-up to change Id26e9dcf23017abaffed4015166d57e21e751e6c
Change-Id: I0abaaf2914fff121bdcefb84f1d29a42ebb5aebb
diff --git a/src/com/android/launcher3/LauncherAppState.java b/src/com/android/launcher3/LauncherAppState.java
index 3ac64e7..fa1670c 100644
--- a/src/com/android/launcher3/LauncherAppState.java
+++ b/src/com/android/launcher3/LauncherAppState.java
@@ -36,7 +36,7 @@
private static float sScreenDensity;
private static int sLongPressTimeout = 300;
private static final String sSharedPreferencesKey = "com.android.launcher3.prefs";
- private long mUptime;
+ private long mStarttime;
WeakReference<LauncherProvider> mLauncherProvider;
@@ -59,7 +59,7 @@
private void initialize(Context context) {
mContext = context;
- mUptime = System.currentTimeMillis();
+ mStarttime = System.currentTimeMillis();
// set sIsScreenXLarge and sScreenDensity *before* creating icon cache
sIsScreenLarge = context.getResources().getBoolean(R.bool.is_large_screen);
@@ -146,7 +146,7 @@
* @return Milliseconds since the application state was created.
*/
public long getUptime() {
- return System.currentTimeMillis() - mUptime;
+ return System.currentTimeMillis() - mStarttime;
}
public static String getSharedPreferencesKey() {