admin
2021-07-28 c0269fcfa876b9c5cf309b2006462b4d09c5ef95
library-NineOldAndroids/src/com/nineoldandroids/animation/AnimatorSet.java
@@ -216,9 +216,9 @@
        for (Node node : mNodes) {
            Animator animation = node.animation;
            if (animation instanceof AnimatorSet) {
                ((AnimatorSet)animation).setTarget(target);
                animation.setTarget(target);
            } else if (animation instanceof ObjectAnimator) {
                ((ObjectAnimator)animation).setTarget(target);
                animation.setTarget(target);
            }
        }
    }
@@ -949,7 +949,7 @@
        public Node clone() {
            try {
                Node node = (Node) super.clone();
                node.animation = (Animator) animation.clone();
                node.animation = animation.clone();
                return node;
            } catch (CloneNotSupportedException e) {
               throw new AssertionError();