am c6f1b1f3: am 0580779d: am 190fa7d0: Merge "Always call through to super.onBackPressed in DialtactsActivity" into klp-dev

* commit 'c6f1b1f3ecb6daf4d1a5bf18daba58dcd8b832be':
  Always call through to super.onBackPressed in DialtactsActivity
diff --git a/src/com/android/dialer/DialtactsActivity.java b/src/com/android/dialer/DialtactsActivity.java
index cfcf5e5..0c0fcda 100644
--- a/src/com/android/dialer/DialtactsActivity.java
+++ b/src/com/android/dialer/DialtactsActivity.java
@@ -908,12 +908,6 @@
         } else if (getInSearchUi()) {
             mSearchView.setText(null);
             mDialpadFragment.clearDialpad();
-        } else if (isTaskRoot()) {
-            // Instead of stopping, simply push this to the back of the stack.
-            // This is only done when running at the top of the stack;
-            // otherwise, we have been launched by someone else so need to
-            // allow the user to go back to the caller.
-            moveTaskToBack(false);
         } else {
             super.onBackPressed();
         }