diff options
author | Jim Miller <jaggies@google.com> | 2012-01-12 12:28:59 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-01-12 12:28:59 -0800 |
commit | 7a286d8391a58637e6834f4de296bf66183ce1b2 (patch) | |
tree | d1ecb04b701ed6b3bdba3ce433a160cdcde9dc63 /policy | |
parent | 755a967bdc2cddb6fbadd10e357f8a5328520061 (diff) | |
parent | 28a0767751268601c4b8c208e4f8708ee2e88533 (diff) | |
download | frameworks_base-7a286d8391a58637e6834f4de296bf66183ce1b2.zip frameworks_base-7a286d8391a58637e6834f4de296bf66183ce1b2.tar.gz frameworks_base-7a286d8391a58637e6834f4de296bf66183ce1b2.tar.bz2 |
Merge "Fix 5620754: don't show pattern screen after SIM PUK unlock" into ics-mr1
Diffstat (limited to 'policy')
-rw-r--r-- | policy/src/com/android/internal/policy/impl/KeyguardUpdateMonitor.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/policy/src/com/android/internal/policy/impl/KeyguardUpdateMonitor.java b/policy/src/com/android/internal/policy/impl/KeyguardUpdateMonitor.java index b4b82aa..d7041fc 100644 --- a/policy/src/com/android/internal/policy/impl/KeyguardUpdateMonitor.java +++ b/policy/src/com/android/internal/policy/impl/KeyguardUpdateMonitor.java @@ -583,8 +583,7 @@ public class KeyguardUpdateMonitor { * through mHandler, this *must* be called from the UI thread. */ public void reportSimUnlocked() { - mSimState = IccCard.State.READY; - handleSimStateChange(new SimArgs(mSimState)); + handleSimStateChange(new SimArgs(IccCard.State.READY)); } public boolean isKeyguardBypassEnabled() { |