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

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

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

parents a9fd746e 774ccdeb
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;
    }

}