diff options
| author | 2024-10-18 09:23:38 +0000 | |
|---|---|---|
| committer | 2024-10-18 09:23:38 +0000 | |
| commit | c81bb46354bc121a1d6adf4f7fdbff49e1793956 (patch) | |
| tree | 25074e5f95109d35a07531d33fd6e92c6a03b0e1 | |
| parent | e7d08b0b0f5745f3d158324fe6f235a113c481c8 (diff) | |
| parent | ecb283668543ec47e53d3d0111ba076be54b3ba3 (diff) | |
Merge "Biometrics: make the handleFailedAttempt method to private method." into main
| -rw-r--r-- | services/core/java/com/android/server/biometrics/sensors/AuthenticationClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/biometrics/sensors/AuthenticationClient.java b/services/core/java/com/android/server/biometrics/sensors/AuthenticationClient.java index daaafcb61bc5..c38ad6082dff 100644 --- a/services/core/java/com/android/server/biometrics/sensors/AuthenticationClient.java +++ b/services/core/java/com/android/server/biometrics/sensors/AuthenticationClient.java @@ -115,7 +115,7 @@ public abstract class AuthenticationClient<T, O extends AuthenticateOptions> } @LockoutTracker.LockoutMode - public int handleFailedAttempt(int userId) { + private int handleFailedAttempt(int userId) { if (mLockoutTracker != null) { mLockoutTracker.addFailedAttemptForUser(getTargetUserId()); } |