OSDN Git Service

Fixed Infinite loop method call.
authorjoshmccloskey <joshmccloskey@google.com>
Tue, 23 Apr 2019 22:59:43 +0000 (15:59 -0700)
committerJoshua Mccloskey <joshmccloskey@google.com>
Thu, 25 Apr 2019 00:42:31 +0000 (00:42 +0000)
Test: Verified that setupwizard flow no longer causes infinite loop.
Fixes: 131106091
Change-Id: I0777fefa08063c62f7ef8cbbc252e219efa98f24

src/com/android/settings/password/SetupChooseLockGeneric.java

index 72b9fa8..cd785cd 100644 (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;
         }