summaryrefslogtreecommitdiffstats
path: root/policy
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2012-01-12 12:28:59 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-01-12 12:28:59 -0800
commit7a286d8391a58637e6834f4de296bf66183ce1b2 (patch)
treed1ecb04b701ed6b3bdba3ce433a160cdcde9dc63 /policy
parent755a967bdc2cddb6fbadd10e357f8a5328520061 (diff)
parent28a0767751268601c4b8c208e4f8708ee2e88533 (diff)
downloadframeworks_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.java3
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() {