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

Commit a465b2d4 authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Fix an unintentional change in method signature and avoid an API change.

Change onDetachedFromWindow() override to a protected method, like superclass.

Change-Id: If626c5187290516d525cab5a76f5c5cabe2d87f0
parent 3d01812f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -745,7 +745,7 @@ public class SearchView extends LinearLayout implements CollapsibleActionView {
    }

    @Override
    public void onDetachedFromWindow() {
    protected void onDetachedFromWindow() {
        removeCallbacks(mUpdateDrawableStateRunnable);
        super.onDetachedFromWindow();
    }