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

Commit 664703d6 authored by Ruchi Kandoi's avatar Ruchi Kandoi
Browse files

Vibrator: Minor coding style changes.

Corrects the coding style errors caused by
I762be1d51eedbf3184d80ed51dc93a0d113a6d5d

Change-Id: I5adb713611f5479b21dd32ed8d8d51cb1910bca9
parent 781a8387
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);