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

Commit 50531248 authored by Mike Lockwood's avatar Mike Lockwood
Browse files

KeyguardManager: Fix copy & paste error in isKeyguardLocked()



Change-Id: If5145e8483d3736d73698b3deb189f2253015543
Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
parent fd887614
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;
        }