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

Commit 8416bcf8 authored by Ryan Lin's avatar Ryan Lin Committed by Android (Google) Code Review
Browse files

Merge "Rename GesureType to GestureId"

parents cef5aea1 dafef884
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;
    }