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

Commit 13c69a62 authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge changes from topic "am-b4ccc74b-9fac-466f-997f-63416774e49c" into...

Merge changes from topic "am-b4ccc74b-9fac-466f-997f-63416774e49c" into ub-launcher3-edmonton-polish

* changes:
  [automerger] Do not execute controller callbacks, if controller is null am: aa168d5c
  Do not execute controller callbacks, if controller is null
parents 87c1a14e a4785c9a
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -49,6 +49,9 @@ public class RecentsAnimationWrapper {
        this.mController = controller;
        this.mController = controller;
        this.targetSet = targetSet;
        this.targetSet = targetSet;


        if (controller == null) {
            return;
        }
        if (mInputConsumerEnabled) {
        if (mInputConsumerEnabled) {
            enableInputConsumer();
            enableInputConsumer();
        }
        }