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

Commit 80ea00c8 authored by Romain Guy's avatar Romain Guy
Browse files

Fix the build.

Change-Id: I7ed20f3d2fb1a80974fbbfe42fdd2f8f135ee401
parent 7717beed
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
@@ -174601,6 +174601,19 @@
 visibility="public"
>
</method>
<method name="getXVelocity"
 return="float"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="id" type="int">
</parameter>
</method>
<method name="getYVelocity"
 return="float"
 abstract="false"
@@ -174612,6 +174625,19 @@
 visibility="public"
>
</method>
<method name="getYVelocity"
 return="float"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<parameter name="id" type="int">
</parameter>
</method>
<method name="obtain"
 return="android.view.VelocityTracker"
 abstract="false"
+0 −4
Original line number Diff line number Diff line
@@ -259,8 +259,6 @@ public final class VelocityTracker implements Poolable<VelocityTracker> {
     * 
     * @param id Which pointer's velocity to return.
     * @return The previously computed X velocity.
     * 
     * @hide Pending API approval
     */
    public float getXVelocity(int id) {
        return mXVelocity[id];
@@ -272,8 +270,6 @@ public final class VelocityTracker implements Poolable<VelocityTracker> {
     * 
     * @param id Which pointer's velocity to return.
     * @return The previously computed Y velocity.
     * 
     * @hide Pending API approval
     */
    public float getYVelocity(int id) {
        return mYVelocity[id];