Fixed doc typo and removed warning

Change-Id: I9c9e45837037a77df5852ff4ea3ad596952e4507
This commit is contained in:
Gilles Debunne
2012-01-17 11:12:27 -08:00
parent 01cc1d1e8c
commit 185b8256f5

View File

@@ -29,7 +29,7 @@ import android.util.PoolableManager;
* to begin tracking. Put the motion events you receive into it with
* {@link #addMovement(MotionEvent)}. When you want to determine the velocity call
* {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
* and {@link #getXVelocity(int)} to retrieve the velocity for each pointer id.
* and {@link #getYVelocity(int)} to retrieve the velocity for each pointer id.
*/
public final class VelocityTracker implements Poolable<VelocityTracker> {
private static final Pool<VelocityTracker> sPool = Pools.synchronizedPool(
@@ -39,6 +39,7 @@ public final class VelocityTracker implements Poolable<VelocityTracker> {
}
public void onAcquired(VelocityTracker element) {
// Intentionally empty
}
public void onReleased(VelocityTracker element) {