summaryrefslogtreecommitdiff
path: root/packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java
diff options
context:
space:
mode:
authorAlan Viverette <alanv@google.com>2017-04-14 18:25:53 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-04-14 18:25:53 +0000
commit14b3375e43d29d353ce6966a9200f09f26592cf3 (patch)
tree634691e151465ff54ea69ae93c94136c3615abb0 /packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java
parent568b59c62ccc5a9a22a598d081408e8615ed49fc (diff)
parentefc602c30700112de9535ea4f85b497dd55df254 (diff)
Merge "Remove unnecessary casts on calls to findViewById" into oc-dev am: 7c8ab2651b
am: efc602c307 Change-Id: Id991d413933d8435a05b129bf13e917941371c01
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java')
-rw-r--r--packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java
index 108b466e44af..c04ae68dab36 100644
--- a/packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java
+++ b/packages/SystemUI/src/com/android/keyguard/KeyguardPinBasedInputView.java
@@ -171,7 +171,7 @@ public abstract class KeyguardPinBasedInputView extends KeyguardAbsKeyInputView
@Override
protected void onFinishInflate() {
- mPasswordEntry = (PasswordTextView) findViewById(getPasswordTextViewId());
+ mPasswordEntry = findViewById(getPasswordTextViewId());
mPasswordEntry.setOnKeyListener(this);
// Set selected property on so the view can send accessibility events.