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

Commit 2cbcee6a authored by Kevin Chyn's avatar Kevin Chyn Committed by android-build-merger
Browse files

Merge "Fix fingerprint onEnumerationResult to use remaining instead of fid"...

Merge "Fix fingerprint onEnumerationResult to use remaining instead of fid" into oc-mr1-dev am: ea783a09
am: bbe9d9a4

Change-Id: Ie88c9c52e9780660a4babf348059c9170a0ce0c7
parents 064b1d5a bbe9d9a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ public abstract class EnumerateClient extends ClientMonitor {
        } catch (RemoteException e) {
            Slog.w(TAG, "Failed to notify enumerated:", e);
        }
        return fingerId == 0; // done when id hits 0
        return remaining == 0;
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ public abstract class InternalEnumerateClient extends EnumerateClient {
            doFingerprintCleanup();
        }

        return fingerId == 0; // done when id hits 0
        return remaining == 0;
    }

}