Loading core/java/android/view/MotionEvent.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -643,8 +643,8 @@ public final class MotionEvent implements Parcelable { * @param pointerIndex Raw index of pointer to retrieve. Value may be from 0 * @param pointerIndex Raw index of pointer to retrieve. Value may be from 0 * (the first pointer that is down) to {@link #getPointerCount()}-1. * (the first pointer that is down) to {@link #getPointerCount()}-1. */ */ public final int getPointerId(int index) { public final int getPointerId(int pointerIndex) { return mPointerIdentifiers[index]; return mPointerIdentifiers[pointerIndex]; } } /** /** Loading Loading
core/java/android/view/MotionEvent.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -643,8 +643,8 @@ public final class MotionEvent implements Parcelable { * @param pointerIndex Raw index of pointer to retrieve. Value may be from 0 * @param pointerIndex Raw index of pointer to retrieve. Value may be from 0 * (the first pointer that is down) to {@link #getPointerCount()}-1. * (the first pointer that is down) to {@link #getPointerCount()}-1. */ */ public final int getPointerId(int index) { public final int getPointerId(int pointerIndex) { return mPointerIdentifiers[index]; return mPointerIdentifiers[pointerIndex]; } } /** /** Loading