Merge "Fix operator precedence bug causing a crash." into nyc-dev

This commit is contained in:
Jim Miller
2016-04-18 21:09:51 +00:00
committed by Android (Google) Code Review

View File

@@ -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);