Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a41f12fc authored by Kevin Chyn's avatar Kevin Chyn Committed by Automerger Merge Worker
Browse files

Remove unnecessary getAuthenticatorId am: 66cbc53d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13413165

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Iec748886355475017499df819d245af665c396fb
parents 77bb0b72 66cbc53d
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -62,13 +62,7 @@ public class FingerprintUpdateActiveUserClient extends HalClientMonitor<IBiometr
        super.start(callback);

        if (mCurrentUserId == getTargetUserId()) {
            Slog.d(TAG, "Already user: " + mCurrentUserId + ", refreshing authenticatorId");
            try {
                mAuthenticatorIds.put(getTargetUserId(), mHasEnrolledBiometrics
                        ? getFreshDaemon().getAuthenticatorId() : 0L);
            } catch (RemoteException e) {
                Slog.e(TAG, "Unable to refresh authenticatorId", e);
            }
            Slog.d(TAG, "Already user: " + mCurrentUserId + ", returning");
            callback.onClientFinished(this, true /* success */);
            return;
        }