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

Commit b238b6be authored by James Lemieux's avatar James Lemieux Committed by Android (Google) Code Review
Browse files

Merge "Avoid NPE when stopping the DeskClock drop shadow controller" into ub-deskclock-gatling

parents 9071670e b07685f2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -366,8 +366,10 @@ public class DeskClock extends BaseActivity

    @Override
    public void onPause() {
        if (mDropShadowController != null) {
            mDropShadowController.stop();
            mDropShadowController = null;
        }

        super.onPause();
    }