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

Commit 5e66616c authored by Doris Liu's avatar Doris Liu
Browse files

Fix clone in AnimatorSet

Change-Id: I277d801897b08889c53522affdfc5581953c4f01
parent 396a4820
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1075,6 +1075,12 @@ public final class AnimatorSet extends Animator {
                if (mChildNodes != null) {
                    node.mChildNodes = new ArrayList<>(mChildNodes);
                }
                if (mSiblings != null) {
                    node.mSiblings = new ArrayList<>(mSiblings);
                }
                if (mParents != null) {
                    node.mParents = new ArrayList<>(mParents);
                }
                node.mEnded = false;
                return node;
            } catch (CloneNotSupportedException e) {