mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Remove unused View parameter from ofFloat method.
Change-Id: I5fabd5c78de52ba68b67e0b1bd7208f4d1f7cbea
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user