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

Commit 6ae2d7ce authored by Alan Viverette's avatar Alan Viverette
Browse files

Don't call deprecated RippleDrawable constructor

BUG: 15972806
Change-Id: If0973eed2da4708312a1320be4dd0b314157bc9a
parent 5f834774
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -144,8 +144,11 @@ public class RippleDrawable extends LayerDrawable {
    /** Whether the hotspot is currently active (e.g. focused or pressed). */
    /** Whether the hotspot is currently active (e.g. focused or pressed). */
    private boolean mActive;
    private boolean mActive;


    /**
     * Constructor used for drawable inflation.
     */
    RippleDrawable() {
    RippleDrawable() {
        this(null, null);
        this(new RippleState(null, null, null), null, null);
    }
    }


    /**
    /**