Fixed Infinite loop method call.

Test: Verified that setupwizard flow no longer causes infinite loop.
Fixes: 131106091
Change-Id: I0777fefa08063c62f7ef8cbbc252e219efa98f24
This commit is contained in:
joshmccloskey
2019-04-23 15:59:43 -07:00
committed by Joshua Mccloskey
parent 2a14b7e8b5
commit 6b30136edf

View File

@@ -231,7 +231,7 @@ public class SetupChooseLockGeneric extends ChooseLockGeneric {
@Override
protected Intent getBiometricEnrollIntent(Context context) {
final Intent intent = getBiometricEnrollIntent(context);
final Intent intent = super.getBiometricEnrollIntent(context);
SetupWizardUtils.copySetupExtras(getActivity().getIntent(), intent);
return intent;
}