diff --git a/quickstep/src/com/android/launcher3/uioverrides/QuickstepLauncher.java b/quickstep/src/com/android/launcher3/uioverrides/QuickstepLauncher.java index 512d5f4014..a5ba8158b2 100644 --- a/quickstep/src/com/android/launcher3/uioverrides/QuickstepLauncher.java +++ b/quickstep/src/com/android/launcher3/uioverrides/QuickstepLauncher.java @@ -1305,11 +1305,9 @@ public class QuickstepLauncher extends Launcher { : groupTask.mSplitBounds.leftTaskPercent); } - @Override public boolean isCommandQueueEmpty() { OverviewCommandHelper overviewCommandHelper = mTISBindHelper.getOverviewCommandHelper(); - return super.isCommandQueueEmpty() - && (overviewCommandHelper == null || overviewCommandHelper.isCommandQueueEmpty()); + return overviewCommandHelper == null || overviewCommandHelper.isCommandQueueEmpty(); } private static final class LauncherTaskViewController extends diff --git a/quickstep/src/com/android/quickstep/RecentsActivity.java b/quickstep/src/com/android/quickstep/RecentsActivity.java index e282d1fffb..8a9c3c826a 100644 --- a/quickstep/src/com/android/quickstep/RecentsActivity.java +++ b/quickstep/src/com/android/quickstep/RecentsActivity.java @@ -467,10 +467,8 @@ public final class RecentsActivity extends StatefulActivity { }; } - @Override public boolean isCommandQueueEmpty() { OverviewCommandHelper overviewCommandHelper = mTISBindHelper.getOverviewCommandHelper(); - return super.isCommandQueueEmpty() - && (overviewCommandHelper == null || overviewCommandHelper.isCommandQueueEmpty()); + return overviewCommandHelper == null || overviewCommandHelper.isCommandQueueEmpty(); } } diff --git a/quickstep/src/com/android/quickstep/fallback/FallbackRecentsView.java b/quickstep/src/com/android/quickstep/fallback/FallbackRecentsView.java index a9a57c6c2d..7dc8347419 100644 --- a/quickstep/src/com/android/quickstep/fallback/FallbackRecentsView.java +++ b/quickstep/src/com/android/quickstep/fallback/FallbackRecentsView.java @@ -86,7 +86,7 @@ public class FallbackRecentsView extends RecentsView> * @param leftOrTop if the staged split will be positioned left or top. */ public void enterStageSplitFromRunningApp(boolean leftOrTop) { } - - - /** Returns whether the overview command helper queue is empty. */ - public boolean isCommandQueueEmpty() { - return true; - } }