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

Commit 19511164 authored by Ruchi Kandoi's avatar Ruchi Kandoi Committed by Android (Google) Code Review
Browse files

Merge "Vibrator: Minor coding style changes."

parents 4f9d2597 664703d6
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -360,8 +360,9 @@ public class VibratorService extends IVibratorService.Stub
    // Lock held on mVibrations
    private void startVibrationLocked(final Vibration vib) {
        try {
            if (mLowPowerMode && vib.mStreamHint != AudioManager.STREAM_RING)
            if (mLowPowerMode && vib.mStreamHint != AudioManager.STREAM_RING) {
                return;
            }

            int mode = mAppOpsService.checkAudioOperation(AppOpsManager.OP_VIBRATE,
                    vib.mStreamHint, vib.mUid, vib.mOpPkg);