diff options
| author | 2024-02-01 19:26:07 +0000 | |
|---|---|---|
| committer | 2024-02-01 19:26:07 +0000 | |
| commit | 3ec1964cceeb2a24ebaf822c0b8d597c8f5e56f2 (patch) | |
| tree | c1095450447121ae48a690a7273d6079b4b227dd | |
| parent | b4657e55d64c63548aeca8cbe7594d4109b73c91 (diff) | |
| parent | 29f573f1232a70eac51791f0d8334848f0dd301e (diff) | |
Merge "Fix comment typos in keyguard repos" into main
4 files changed, 4 insertions, 4 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java index c6d147108611..edf951737a16 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java @@ -33,7 +33,7 @@ import com.android.systemui.R; public abstract class KeyguardAbsKeyInputView extends KeyguardInputView { protected View mEcaView; - // To avoid accidental lockout due to events while the device in in the pocket, ignore + // To avoid accidental lockout due to events while the device in the pocket, ignore // any passwords with length less than or equal to this length. protected static final int MINIMUM_PASSWORD_LENGTH_BEFORE_REPORT = 3; private KeyDownListener mKeyDownListener; diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java index bc12aeebd84c..ce03072e2f0b 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java @@ -132,7 +132,7 @@ public interface KeyguardViewController { boolean shouldSubtleWindowAnimationsForUnlock(); /** - * Starts the animation before we dismiss Keyguard, i.e. an disappearing animation on the + * Starts the animation before we dismiss Keyguard, i.e. a disappearing animation on the * security view of the bouncer. * * @param finishRunnable the runnable to be run after the animation finished, or {@code null} if diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardIndication.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardIndication.java index 9b83b75cec22..ee3706a3ba62 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardIndication.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardIndication.java @@ -80,7 +80,7 @@ public class KeyguardIndication { } /** - * Click listener for messsage. + * Click listener for message. */ public @Nullable View.OnClickListener getClickListener() { return mOnClickListener; diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index 1ae5d0a1a39d..c38501123f1c 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -437,7 +437,7 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, /** * Whether a hide is pending and we are just waiting for #startKeyguardExitAnimation to be * called. - * */ + */ private boolean mHiding; /** |