From a5ca3c2c9b3687b057fd500999fc74c663467775 Mon Sep 17 00:00:00 2001 From: josephpv Date: Wed, 17 Jul 2024 11:26:52 +0000 Subject: [PATCH] Remove todo from PrivateSpaceMaitainer code This change removes the TODO comment that was tracking to move over to Biometric intent KeyguardManager.createConfirmDeviceCredentialIntent. The hidden KeyguardManager.createConfirmDeviceCredentialIntent is being used by various frameworks clients and is still avialable for use in settings. Bug: 304796434 Test: Manual Flag: EXEMPT removing todo Change-Id: I5566d56e743e88afbcca0c4167c8a797e41b1a97 --- .../android/settings/privatespace/PrivateSpaceMaintainer.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/com/android/settings/privatespace/PrivateSpaceMaintainer.java b/src/com/android/settings/privatespace/PrivateSpaceMaintainer.java index 6b9252a4911..ec044daacbf 100644 --- a/src/com/android/settings/privatespace/PrivateSpaceMaintainer.java +++ b/src/com/android/settings/privatespace/PrivateSpaceMaintainer.java @@ -205,7 +205,6 @@ public class PrivateSpaceMaintainer { return mKeyguardManager.createConfirmDeviceCredentialIntent( /* title= */ null, /* description= */null, mUserHandle.getIdentifier()); } - // TODO(b/304796434) Need to try changing this intent to use BiometricPrompt return mKeyguardManager.createConfirmDeviceCredentialIntent( /* title= */ null, /* description= */ null); }