From 494cce7f28d2cd2fe590b31a7c69d860fe86c4fd Mon Sep 17 00:00:00 2001 From: Manu Cornet Date: Fri, 16 Dec 2016 13:57:22 -0800 Subject: [PATCH] 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 --- packages/SystemUI/src/com/android/systemui/recents/Recents.java | 2 -- 1 file changed, 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 790f3f66f6e4d..d9fc2fc84992f 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); }