summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ilya Matyukhin <ilyamaty@google.com> 2019-10-22 16:17:59 -0700
committer Ilya Matyukhin <ilyamaty@google.com> 2019-10-22 16:17:59 -0700
commitbca81c3b484175e4744f35e2c3d3b8719d34fe8f (patch)
tree9f0651dfdc442950148c41c26a1748777384f6eb
parent66bad8bce5c571ba3de5ccd2173d92fc215fd7b7 (diff)
Remove no longer needed getErrorString(...)
The strings are now obtained by the manager classes, such as FingerprintManager and FaceManager. BiometricService just passes down the error codes. Bug: 141025588 Test: atest BiometricServiceTest Test: the errors are shown correctly in BiometricPromptDemo Change-Id: I19711c81dc86eae5e0c5d12eaea9a2a9a5bd1f2c
-rw-r--r--services/core/java/com/android/server/biometrics/BiometricService.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/services/core/java/com/android/server/biometrics/BiometricService.java b/services/core/java/com/android/server/biometrics/BiometricService.java
index 619c21e7646b..44c81fc09b2a 100644
--- a/services/core/java/com/android/server/biometrics/BiometricService.java
+++ b/services/core/java/com/android/server/biometrics/BiometricService.java
@@ -988,18 +988,6 @@ public class BiometricService extends SystemService {
}
}
- private String getErrorString(int modality, int error, int vendorCode) {
- for (AuthenticatorWrapper authenticator : mAuthenticators) {
- if (authenticator.modality == modality) {
- // TODO(b/141025588): Refactor IBiometricServiceReceiver.aidl#onError(...) to not
- // ask for a String error message, but derive it from the error code instead.
- return "";
- }
- }
- Slog.w(TAG, "Unable to get error string for modality: " + modality);
- return null;
- }
-
private void logDialogDismissed(int reason) {
if (reason == BiometricPrompt.DISMISSED_REASON_BIOMETRIC_CONFIRMED) {
// Explicit auth, authentication confirmed.