Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51cfa78b authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Ensure Animators and AnimatorSets run together are sync'd"

parents 3c91c407 b04a0e57
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -135,9 +135,8 @@ public class AnimationHandler {
    }

    private void doAnimationFrame(long frameTime) {
        int size = mAnimationCallbacks.size();
        long currentTime = SystemClock.uptimeMillis();
        for (int i = 0; i < size; i++) {
        for (int i = 0; i < mAnimationCallbacks.size(); i++) {
            final AnimationFrameCallback callback = mAnimationCallbacks.get(i);
            if (callback == null) {
                continue;