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

Commit 9ba8b790 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[BiometricsV2] Fix end-to-end enroll test fail" into main

parents 80d3ac14 18153808
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -126,21 +126,21 @@ open class FingerprintEnrollmentActivity : FragmentActivity() {

    private var isFirstFragmentAdded = false

    private val findSensorActionObserver: Observer<Int> = Observer<Int> { action ->
    private val findSensorActionObserver = Observer<Int?> { action ->
        if (DEBUG) {
            Log.d(TAG, "findSensorActionObserver($action)")
        }
        action?.let { onFindSensorAction(it) }
    }

    private val enrollingActionObserver: Observer<Int> = Observer<Int> { action ->
    private val enrollingActionObserver = Observer<Int?> { action ->
        if (DEBUG) {
            Log.d(TAG, "enrollingActionObserver($action)")
        }
        action?.let { onEnrollingAction(it) }
    }

    private val finishActionObserver: Observer<Int> = Observer<Int> { action ->
    private val finishActionObserver = Observer<Int> { action ->
        if (DEBUG) {
            Log.d(TAG, "finishActionObserver($action)")
        }