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

Commit 06b479fd authored by Jim Miller's avatar Jim Miller Committed by android-build-merger
Browse files

Merge "Fix operator precedence bug causing a crash." into nyc-dev am: 8df94000

am: 30931560

* commit '30931560':
  Fix operator precedence bug causing a crash.

Change-Id: I44098fd63db9692fd1c4d1082dd091b5fb1c8112
parents 41e77b8a 30931560
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ public class FingerprintService extends SystemService implements IBinder.DeathRe
            removeClient(client);
        }
        if (DEBUG) Slog.v(TAG, "handleError(client="
                + client != null ? client.getOwnerString() : "null" + ", error = " + error + ")");
                + (client != null ? client.getOwnerString() : "null") + ", error = " + error + ")");
        // This is the magic code that starts the next client when the old client finishes.
        if (error == FingerprintManager.FINGERPRINT_ERROR_CANCELED) {
            mHandler.removeCallbacks(mResetClientState);