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

Commit 07c6140c authored by Doris Liu's avatar Doris Liu Committed by android-build-merger
Browse files

Allow null target in ObjectAnimator if the target has never been set am: 4d04b1a4

am: fd2c4f18

Change-Id: Ie93f301ff96d1bd86ea9cea341f8552d6c6a4e6d
parents 97211afe fd2c4f18
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -977,8 +977,9 @@ public final class ObjectAnimator extends ValueAnimator {
    @Override
    void animateValue(float fraction) {
        final Object target = getTarget();
        if (target == null) {
            // We lost the target reference, cancel and clean up.
        if (mTarget != null && target == null) {
            // We lost the target reference, cancel and clean up. Note: we allow null target if the
            /// target has never been set.
            cancel();
            return;
        }