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

Commit 1b895639 authored by Mike Lockwood's avatar Mike Lockwood Committed by Android Git Automerger
Browse files

am 69e19ae1: DO NOT MERGE: KeyguardManager: Fix copy & paste error in isKeyguardLocked()

* commit '69e19ae1':
  DO NOT MERGE: KeyguardManager: Fix copy & paste error in isKeyguardLocked()
parents bbd460d7 69e19ae1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ public class KeyguardManager {
     */
    public boolean isKeyguardLocked() {
        try {
            return mWM.isKeyguardSecure();
            return mWM.isKeyguardLocked();
        } catch (RemoteException ex) {
            return false;
        }