diff options
author | Dave Mankoff <mankoff@google.com> | 2020-09-23 14:01:33 +0000 |
---|---|---|
committer | Dave Mankoff <mankoff@google.com> | 2020-09-24 11:04:52 -0400 |
commit | 9a80cc2ec8c627b0fc290ffc4b318382a758ed87 (patch) | |
tree | c73ab719bb01ebfeeea007134795f5c6ec4f0891 /packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java | |
parent | 3b7e026c067af221f040ceea6da97cb354dad2a3 (diff) |
Revert^2 "9/N Clean Up Keyguard Class Structure"
b00c929394cb6bce158265af9606a8eb5a79e47a
Change-Id: I42d17262a789d2eb106a924b442a9d3debcc35e4
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java index 3c29058e0afc..cc8bf4f2d028 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardSimPinViewController.java @@ -106,7 +106,7 @@ public class KeyguardSimPinViewController @Override public boolean startDisappearAnimation(Runnable finishRunnable) { - return mView.startDisappearAnimation(finishRunnable); + return false; } @Override @@ -137,7 +137,7 @@ public class KeyguardSimPinViewController mMessageAreaController.setMessage( com.android.systemui.R.string.kg_invalid_sim_pin_hint); mView.resetPasswordText(true /* animate */, true /* announce */); - mKeyguardSecurityCallback.userActivity(); + getKeyguardSecurityCallback().userActivity(); return; } @@ -159,7 +159,7 @@ public class KeyguardSimPinViewController mKeyguardUpdateMonitor.reportSimUnlocked(mSubId); mRemainingAttempts = -1; mShowDefaultMessage = true; - mKeyguardSecurityCallback.dismiss( + getKeyguardSecurityCallback().dismiss( true, KeyguardUpdateMonitor.getCurrentUser()); } else { mShowDefaultMessage = false; @@ -186,7 +186,7 @@ public class KeyguardSimPinViewController + " attemptsRemaining=" + result.getAttemptsRemaining()); } } - mKeyguardSecurityCallback.userActivity(); + getKeyguardSecurityCallback().userActivity(); mCheckSimPinThread = null; }); } |