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

Commit 2947926c authored by ztenghui's avatar ztenghui Committed by Android Git Automerger
Browse files

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

* commit '059451e1':
  DO NOT MERGE: Reset the Node status when clone.
parents 5b0c0964 059451e1
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();