Fix the build.
Change-Id: I7ed20f3d2fb1a80974fbbfe42fdd2f8f135ee401
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user