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

Commit f4c04f79 authored by Ikram Gabiyev's avatar Ikram Gabiyev Committed by Automerger Merge Worker
Browse files

Merge "Remove logs since PipPinchInTest is fixed" into udc-dev am: 8f85ec1e...

Merge "Remove logs since PipPinchInTest is fixed" into udc-dev am: 8f85ec1e am: 95584658 am: e76994d8

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23039781



Change-Id: I9f7b051612f4f335b11b87458f6c1dfb128758d7
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 08a57ad6 e76994d8
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ import android.annotation.NonNull;
import android.app.Instrumentation;
import android.app.UiAutomation;
import android.os.SystemClock;
import android.util.Log;
import android.view.InputDevice;
import android.view.InputEvent;
import android.view.MotionEvent;
@@ -33,7 +32,6 @@ import androidx.annotation.Nullable;
 * Injects gestures given an {@link Instrumentation} object.
 */
public class GestureHelper {
    private static final String TAG = GestureHelper.class.getSimpleName();
    // Inserted after each motion event injection.
    private static final int MOTION_EVENT_INJECTION_DELAY_MILLIS = 5;

@@ -210,9 +208,6 @@ public class GestureHelper {
            for (int j = 0; j < coords.length; j++) {
                coords[j].x += (endPoints[j].x - startPoints[j].x) / steps;
                coords[j].y += (endPoints[j].y - startPoints[j].y) / steps;

                // TODO: remove logging once b/269505548 is resolved
                Log.d(TAG, "(" + coords[j].x + ", " + coords[j].y + ")");
            }

            eventTime = SystemClock.uptimeMillis();