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

Commit 550bf1b8 authored by Ilya Matyukhin's avatar Ilya Matyukhin
Browse files

Adjust TestHal.java to the updated PointerContext

Bug: 205915651
Test: atest CtsBiometricsTestCases
Change-Id: I86cd6cd28274fe919e17d9435233040ac6762461
parent 0c20077d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -204,8 +204,8 @@ public class TestHal extends IFingerprint.Stub {

            @Override
            public void onPointerDownWithContext(PointerContext context) {
                onPointerDown(
                        context.pointerId, context.x, context.y, context.minor, context.major);
                onPointerDown(context.pointerId, (int) context.x, (int) context.y, context.minor,
                        context.major);
            }

            @Override