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

Commit 059451e1 authored by ztenghui's avatar ztenghui Committed by Android Git Automerger
Browse files

am 23606598: DO NOT MERGE: Reset the Node status when clone.

* commit '23606598':
  DO NOT MERGE: Reset the Node status when clone.
parents fb861b6c 23606598
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1082,7 +1082,8 @@ public final class AnimatorSet extends Animator {
        public Node clone() {
            try {
                Node node = (Node) super.clone();
                node.animation = (Animator) animation.clone();
                node.animation = animation.clone();
                node.done = false;
                return node;
            } catch (CloneNotSupportedException e) {
               throw new AssertionError();