Merge "Clean up async bouncer flag" into udc-dev

This commit is contained in:
Aaron Liu
2023-04-27 19:26:52 +00:00
committed by Android (Google) Code Review
2 changed files with 1 additions and 7 deletions

View File

@@ -205,11 +205,6 @@ object Flags {
"wallpaper_picker_ui_for_aiwp"
)
/** Whether to inflate the bouncer view on a background thread. */
// TODO(b/272091103): Tracking Bug
@JvmField
val ASYNC_INFLATE_BOUNCER = releasedFlag(229, "async_inflate_bouncer")
/** Whether to inflate the bouncer view on a background thread. */
// TODO(b/273341787): Tracking Bug
@JvmField

View File

@@ -682,8 +682,7 @@ public class KeyguardSecurityContainerControllerTest extends SysuiTestCase {
}
@Test
public void testReinflateViewFlipper_asyncBouncerFlagOn() {
when(mFeatureFlags.isEnabled(Flags.ASYNC_INFLATE_BOUNCER)).thenReturn(true);
public void testReinflateViewFlipper() {
KeyguardSecurityViewFlipperController.OnViewInflatedCallback onViewInflatedCallback =
controller -> {
};