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

Commit dafef884 authored by ryanlwlin's avatar ryanlwlin
Browse files

Rename GesureType to GestureId

Bug: 139127300
Test: NA
Change-Id: If081d872064efef5e841ac93c6e49a9e46b68777
parent a3eb4278
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -76,9 +76,9 @@ public final class AccessibilityGestureEvent implements Parcelable {
            GESTURE_SWIPE_RIGHT_AND_DOWN
    })
    @Retention(RetentionPolicy.SOURCE)
    public @interface GestureType {}
    public @interface GestureId {}

    @GestureType
    @GestureId
    private final int mGestureId;
    private final int mDisplayId;

@@ -110,7 +110,7 @@ public final class AccessibilityGestureEvent implements Parcelable {
     * @return the performed gesture id.
     *
     */
    @GestureType public int getGestureId() {
    @GestureId public int getGestureId() {
        return mGestureId;
    }