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

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

Merge "Remove Vibrator Shell Command Time Limit"

parents d84d668d db4070c2
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1258,8 +1258,6 @@ public class VibratorService extends IVibratorService.Stub

    private final class VibratorShellCommand extends ShellCommand {

        private static final long MAX_VIBRATION_MS = 200;

        private final IBinder mToken;

        private VibratorShellCommand(IBinder token) {
@@ -1303,9 +1301,6 @@ public class VibratorService extends IVibratorService.Stub
                }

                final long duration = Long.parseLong(getNextArgRequired());
                if (duration > MAX_VIBRATION_MS) {
                    throw new IllegalArgumentException("maximum duration is " + MAX_VIBRATION_MS);
                }
                String description = getNextArg();
                if (description == null) {
                    description = "Shell command";