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

Commit 2e9f8634 authored by Matt Pape's avatar Matt Pape Committed by Android (Google) Code Review
Browse files

Merge "Forward 'help' and '-h' to default implementation for ShellCommand."

parents 33c76108 01a9c153
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ final public class SettingsService extends Binder {

        @Override
        public int onCommand(String cmd) {
            if (cmd == null) {
            if (cmd == null || "help".equals(cmd) || "-h".equals(cmd)) {
                return handleDefaultCommands(cmd);
            }