removing workaround for fixed animator bug

Change-Id: I244b1c83f5659cf55e1f172ae33f63adbdcf2ea5
This commit is contained in:
Michael Jurka
2010-12-17 20:15:06 -08:00
parent 800242b5b7
commit 8edd75c8bb
6 changed files with 32 additions and 104 deletions

View File

@@ -52,9 +52,9 @@ public class InterruptibleInOutAnimator {
mOriginalFromValue = fromValue;
mOriginalToValue = toValue;
mAnimator.addListener(new LauncherAnimatorListenerAdapter() {
mAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEndOrCancel(Animator animation) {
public void onAnimationEnd(Animator animation) {
mDirection = STOPPED;
}
});