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

Commit 36a1342b authored by John Spurlock's avatar John Spurlock
Browse files

Fix typo in KeyguardUpdateMonitor.

Change-Id: Iedb2b2051b1a14ab7cc099614f45a57b745ea19d
parent 221d2cbf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1239,7 +1239,7 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener {
        mHandler.sendEmptyMessage(MSG_SCREEN_TURNED_ON);
    }

    public void dispatchScreenTurndOff(int why) {
    public void dispatchScreenTurnedOff(int why) {
        synchronized(this) {
            mScreenOn = false;
        }
+1 −1
Original line number Diff line number Diff line
@@ -636,7 +636,7 @@ public class KeyguardViewMediator extends SystemUI {
                doKeyguardLocked(null);
            }
        }
        KeyguardUpdateMonitor.getInstance(mContext).dispatchScreenTurndOff(why);
        KeyguardUpdateMonitor.getInstance(mContext).dispatchScreenTurnedOff(why);
    }

    private void doKeyguardLaterLocked() {