Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8185663b authored by Winson Chung's avatar Winson Chung
Browse files

Remove unused logs

Bug: 191698994
Test: Just removing logs
Change-Id: Ia6ae528f1444cbdbe3823657492deeb6c4a3d6ce
parent d25ee329
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -95,7 +95,6 @@ public class TaskAnimationManager implements RecentsAnimationCallbacks.RecentsAn
    @UiThread
    public RecentsAnimationCallbacks startRecentsAnimation(GestureState gestureState,
            Intent intent, RecentsAnimationCallbacks.RecentsAnimationListener listener) {
        Log.d("b/186444448", "startRecentsAnimation");
        // Notify if recents animation is still running
        if (mController != null) {
            String msg = "New recents animation started before old animation completed";
+0 −4
Original line number Diff line number Diff line
@@ -82,7 +82,6 @@ import android.text.StaticLayout;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.util.FloatProperty;
import android.util.Log;
import android.util.SparseBooleanArray;
import android.view.Gravity;
import android.view.HapticFeedbackConstants;
@@ -1669,7 +1668,6 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
     * {@link #onGestureAnimationStart} and {@link #onGestureAnimationEnd()}.
     */
    public void onSwipeUpAnimationSuccess() {
        Log.d("b/186444448", "onSwipeUpAnimationSuccess");
        animateUpTaskIconScale();
        setSwipeDownShouldLaunchApp(true);
    }
@@ -1741,7 +1739,6 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T
     * Called when a gesture from an app has finished, and the animation to the target has ended.
     */
    public void onGestureAnimationEnd() {
        Log.d("b/186444448", "onGestureEnd");
        mGestureActive = false;
        if (mOrientationState.setGestureActive(false)) {
            updateOrientationHandler();
@@ -1867,7 +1864,6 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T

    public void animateUpTaskIconScale() {
        mTaskIconScaledDown = false;
        Log.d("b/186444448", "animateUpRunningTaskIconScale");
        int taskCount = getTaskViewCount();
        for (int i = 0; i < taskCount; i++) {
            TaskView taskView = getTaskViewAt(i);
+0 −3
Original line number Diff line number Diff line
@@ -815,8 +815,6 @@ public class TaskView extends FrameLayout implements Reusable {
    }

    public void animateIconScaleAndDimIntoView() {
        Log.d("b/186444448", "animateIconScaleAndDimIntoView: startProgress="
                + mIconScaleAnimStartProgress);
        if (mIconAndDimAnimator != null) {
            mIconAndDimAnimator.cancel();
        }
@@ -826,7 +824,6 @@ public class TaskView extends FrameLayout implements Reusable {
        mIconAndDimAnimator.addListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                Log.d("b/186444448", "animateIconScaleAndDimIntoView: end");
                mIconAndDimAnimator = null;
            }
        });