Skip to content
Snippets Groups Projects
Commit 3efba09e authored by cyberta's avatar cyberta
Browse files

remove dead code in start activity

parent b910710a
No related branches found
No related tags found
No related merge requests found
...@@ -54,12 +54,11 @@ public class StartActivity extends Activity{ ...@@ -54,12 +54,11 @@ public class StartActivity extends Activity{
public static final String TAG = StartActivity.class.getSimpleName(); public static final String TAG = StartActivity.class.getSimpleName();
@Retention(RetentionPolicy.SOURCE) @Retention(RetentionPolicy.SOURCE)
@IntDef({FIRST, NORMAL, UPGRADE, DOWNGRADE}) @IntDef({FIRST, NORMAL, UPGRADE})
private @interface StartupMode {} private @interface StartupMode {}
private static final int FIRST = 0; private static final int FIRST = 0;
private static final int NORMAL = 1; private static final int NORMAL = 1;
private static final int UPGRADE = 2; private static final int UPGRADE = 2;
private static final int DOWNGRADE = 3;
private int versionCode; private int versionCode;
private int previousVersionCode; private int previousVersionCode;
...@@ -87,10 +86,6 @@ public class StartActivity extends Activity{ ...@@ -87,10 +86,6 @@ public class StartActivity extends Activity{
executeUpgrade(); executeUpgrade();
// TODO show donation dialog // TODO show donation dialog
break; break;
case DOWNGRADE:
// TODO think how and why this should happen and what todo
break;
} }
// initialize app necessities // initialize app necessities
...@@ -128,11 +123,6 @@ public class StartActivity extends Activity{ ...@@ -128,11 +123,6 @@ public class StartActivity extends Activity{
Log.d(TAG, "UPGRADE"); Log.d(TAG, "UPGRADE");
return UPGRADE; return UPGRADE;
} }
// version has decreased -> downgrade
if (versionCode < previousVersionCode) {
Log.d(TAG, "DOWNGRADE");
return DOWNGRADE;
}
} catch (PackageManager.NameNotFoundException e) { } catch (PackageManager.NameNotFoundException e) {
Log.d(TAG, "Splash screen didn't find any " + getPackageName() + " package"); Log.d(TAG, "Splash screen didn't find any " + getPackageName() + " package");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment