summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Manu Cornet <manucornet@google.com> 2016-12-16 13:57:22 -0800
committer Manu Cornet <manucornet@google.com> 2016-12-16 13:58:22 -0800
commit494cce7f28d2cd2fe590b31a7c69d860fe86c4fd (patch)
treea2c57d22a6fb0dbe53533ad059cc3f1c5443a1f0
parentb69b95f0bd8ce69761cad878629edaab6ac17443 (diff)
2D recents: remove hook for separate activity
I'm going to keep the activity itself around for a couple of more days while we transition to this new way, but this removes the entry point. Bug: 32101881 Test: On local sw600dp device, checked recents Change-Id: I46470a24be894fd4056a59f58a9af41d12c1fdf5
-rw-r--r--packages/SystemUI/src/com/android/systemui/recents/Recents.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/Recents.java b/packages/SystemUI/src/com/android/systemui/recents/Recents.java
index 790f3f66f6e4..d9fc2fc84992 100644
--- a/packages/SystemUI/src/com/android/systemui/recents/Recents.java
+++ b/packages/SystemUI/src/com/android/systemui/recents/Recents.java
@@ -207,8 +207,6 @@ public class Recents extends SystemUI
getSystemService(Context.UI_MODE_SERVICE);
if (uiModeManager.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION) {
mImpl = new RecentsTvImpl(mContext);
- } else if (SystemProperties.getBoolean("ro.recents.grid", false) == true) {
- mImpl = new RecentsGridImpl(mContext);
} else {
mImpl = new RecentsImpl(mContext);
}