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
This commit is contained in:
josephpv
2024-07-17 11:26:52 +00:00
parent d133ec93ab
commit a5ca3c2c9b

View File

@@ -205,7 +205,6 @@ public class PrivateSpaceMaintainer {
return mKeyguardManager.createConfirmDeviceCredentialIntent( return mKeyguardManager.createConfirmDeviceCredentialIntent(
/* title= */ null, /* description= */null, mUserHandle.getIdentifier()); /* title= */ null, /* description= */null, mUserHandle.getIdentifier());
} }
// TODO(b/304796434) Need to try changing this intent to use BiometricPrompt
return mKeyguardManager.createConfirmDeviceCredentialIntent( return mKeyguardManager.createConfirmDeviceCredentialIntent(
/* title= */ null, /* description= */ null); /* title= */ null, /* description= */ null);
} }