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

Commit 3538deee authored by Sebastián Franco's avatar Sebastián Franco Committed by Android (Google) Code Review
Browse files

Merge "Prevent null pointer exception by return from setBackToLauncherCallback...

Merge "Prevent null pointer exception by return from setBackToLauncherCallback when mBackToLauncherCallback is null" into udc-dev
parents 0745f507 3bb1c1c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -967,7 +967,7 @@ public class SystemUiProxy implements ISystemUiProxy {
            IRemoteAnimationRunner runner) {
        mBackToLauncherCallback = callback;
        mBackToLauncherRunner = runner;
        if (mBackAnimation == null) {
        if (mBackAnimation == null || mBackToLauncherCallback == null) {
            return;
        }
        try {