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

Commit f8ddd05a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Make BiometricsViewModelFactory Java 8 compilable"

parents 608a9934 27e50197
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -49,10 +49,11 @@ public class BiometricsViewModelFactory implements ViewModelProvider.Factory {
    private static final String TAG = "BiometricsViewModelFact";

    public static final CreationExtras.Key<ChallengeGenerator> CHALLENGE_GENERATOR_KEY =
            new CreationExtras.Key<>() {};
            new CreationExtras.Key<ChallengeGenerator>() {};
    public static final CreationExtras.Key<EnrollmentRequest> ENROLLMENT_REQUEST_KEY =
            new CreationExtras.Key<>() {};
    public static final CreationExtras.Key<Integer> USER_ID_KEY = new CreationExtras.Key<>() {};
            new CreationExtras.Key<EnrollmentRequest>() {};
    public static final CreationExtras.Key<Integer> USER_ID_KEY =
            new CreationExtras.Key<Integer>() {};

    @NonNull
    @Override