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
This commit is contained in:
Manu Cornet
2016-12-16 13:57:22 -08:00
parent b69b95f0bd
commit 494cce7f28

View File

@@ -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);
}