summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-02-11 22:45:01 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-02-11 22:45:01 +0100
commitc65088b68e9bb0aa97768c536822c6b82cc86b6f (patch)
tree6f1f1189764a238d417ed7d2f742a56f78507ad9 /packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java
parenta57394a0be5e601c447a07786487bd4c34b0d899 (diff)
parent4ba10939b7c05e4cf44d053ee8fa37a703c19e9b (diff)
downloadframeworks_base-c65088b68e9bb0aa97768c536822c6b82cc86b6f.zip
frameworks_base-c65088b68e9bb0aa97768c536822c6b82cc86b6f.tar.gz
frameworks_base-c65088b68e9bb0aa97768c536822c6b82cc86b6f.tar.bz2
Merge branch 'cm-13.0' of https://github.com/LineageOS/android_frameworks_base into replicant-6.0
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java')
-rw-r--r--packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java10
1 files changed, 1 insertions, 9 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java b/packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java
index 6fd7387..cdda45f 100644
--- a/packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java
+++ b/packages/SystemUI/src/com/android/systemui/egg/MLandActivity.java
@@ -1,6 +1,5 @@
/*
* Copyright (C) 2015 The Android Open Source Project
- * Copyright (C) 2014-2015 The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,14 +29,7 @@ public class MLandActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
- final boolean isCM = getIntent().getBooleanExtra("is_cm", false);
- if (isCM) {
- setContentView(R.layout.cmland);
- mLand = (CMLand) findViewById(R.id.world);
- } else {
- setContentView(R.layout.mland);
- mLand = (MLand) findViewById(R.id.world);
- }
+ setContentView(R.layout.mland);
mLand = (MLand) findViewById(R.id.world);
mLand.setScoreFieldHolder((ViewGroup) findViewById(R.id.scores));
final View welcome = findViewById(R.id.welcome);