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

Commit 68ef67fd authored by Danny Burakov's avatar Danny Burakov Committed by Android (Google) Code Review
Browse files

Merge "Remove unused predictive back interpolator from animation-lib" into main

parents a8b41957 c742af8e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -165,8 +165,6 @@ public class Interpolators {

    public static final Interpolator DECELERATED_EASE = new PathInterpolator(0, 0, .2f, 1f);
    public static final Interpolator ACCELERATED_EASE = new PathInterpolator(0.4f, 0, 1f, 1f);
    public static final Interpolator PREDICTIVE_BACK_DECELERATED_EASE =
            new PathInterpolator(0, 0, 0, 1f);
    public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f);
    public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f);
    public static final Interpolator ACCELERATE = new AccelerateInterpolator();
+0 −2
Original line number Diff line number Diff line
@@ -171,8 +171,6 @@ public class InterpolatorsAndroidX {

    public static final Interpolator DECELERATED_EASE = new PathInterpolator(0, 0, .2f, 1f);
    public static final Interpolator ACCELERATED_EASE = new PathInterpolator(0.4f, 0, 1f, 1f);
    public static final Interpolator PREDICTIVE_BACK_DECELERATED_EASE =
            new PathInterpolator(0, 0, 0, 1f);
    public static final Interpolator ALPHA_IN = new PathInterpolator(0.4f, 0f, 1f, 1f);
    public static final Interpolator ALPHA_OUT = new PathInterpolator(0f, 0f, 0.8f, 1f);
    public static final Interpolator ACCELERATE = new AccelerateInterpolator();