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

Commit a610efbf authored by Ilya Matyukhin's avatar Ilya Matyukhin
Browse files

Make qualified members "final"

Bug: 141335235
Test: Face Unlock works E2E
Change-Id: Ib2052a096188eadcbc968254795ba9ad82ef606c
parent 15daad17
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ public class BiometricService extends SystemService {
    private final boolean mHasFeatureIris;
    private final boolean mHasFeatureFace;
    @VisibleForTesting
    SettingObserver mSettingObserver;
    final SettingObserver mSettingObserver;
    private final List<EnabledOnKeyguardCallback> mEnabledOnKeyguardCallbacks;
    private final Random mRandom = new Random();

@@ -409,8 +409,8 @@ public class BiometricService extends SystemService {
    };

    private final class Authenticator {
        int mType;
        BiometricAuthenticator mAuthenticator;
        final int mType;
        final BiometricAuthenticator mAuthenticator;

        Authenticator(int type, BiometricAuthenticator authenticator) {
            mType = type;
@@ -443,9 +443,9 @@ public class BiometricService extends SystemService {
        private final ContentResolver mContentResolver;
        private final List<BiometricService.EnabledOnKeyguardCallback> mCallbacks;

        private Map<Integer, Boolean> mFaceEnabledOnKeyguard = new HashMap<>();
        private Map<Integer, Boolean> mFaceEnabledForApps = new HashMap<>();
        private Map<Integer, Boolean> mFaceAlwaysRequireConfirmation = new HashMap<>();
        private final Map<Integer, Boolean> mFaceEnabledOnKeyguard = new HashMap<>();
        private final Map<Integer, Boolean> mFaceEnabledForApps = new HashMap<>();
        private final Map<Integer, Boolean> mFaceAlwaysRequireConfirmation = new HashMap<>();

        /**
         * Creates a content observer.