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

Commit 96ef3145 authored by Lucas Silva's avatar Lucas Silva
Browse files

Update KeyguardViewMediator field to primitive type.

Currently we are seeing exceptions due to the fact that the
mShowCommunalByDefault field is an un-initialized boxed Boolean type
instead of a primitive boolean with a default of false.

Bug: 333699753
Test: WIP - adding in follow-up item
Flag: NA
Change-Id: I08e1d7bbfede036dbc6a3189a5e6d5fa6cbe8080
parent 0e75605d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1373,7 +1373,7 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable,
    private final Lazy<DreamViewModel> mDreamViewModel;
    private final Lazy<CommunalTransitionViewModel> mCommunalTransitionViewModel;
    private RemoteAnimationTarget mRemoteAnimationTarget;
    private Boolean mShowCommunalByDefault;
    private boolean mShowCommunalByDefault = false;

    private final Lazy<WindowManagerLockscreenVisibilityManager> mWmLockscreenVisibilityManager;