Remove unused View parameter from ofFloat method.

Change-Id: I5fabd5c78de52ba68b67e0b1bd7208f4d1f7cbea
This commit is contained in:
Jon Miranda
2017-02-06 15:54:41 -08:00
parent e1fa0145d3
commit cda3bfb2e1
5 changed files with 8 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ public class InterruptibleInOutAnimator {
@Thunk int mDirection = STOPPED;
public InterruptibleInOutAnimator(View view, long duration, float fromValue, float toValue) {
mAnimator = LauncherAnimUtils.ofFloat(view, fromValue, toValue).setDuration(duration);
mAnimator = LauncherAnimUtils.ofFloat(fromValue, toValue).setDuration(duration);
mOriginalDuration = duration;
mOriginalFromValue = fromValue;
mOriginalToValue = toValue;