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

Commit 8989f99e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in RNA#start()"

parents b3b05b03 545a3471
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ public class RenderNodeAnimator extends Animator {
    }

    private void applyInterpolator() {
        if (mInterpolator == null) return;
        if (mInterpolator == null || mNativePtr == null) return;

        long ni;
        if (isNativeInterpolator(mInterpolator)) {