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

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

Merge "Tweak command-line verb names" into rvc-dev

parents 6d7751e7 172dfa15
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -37,9 +37,9 @@ class TimeZoneDetectorShellCommand extends ShellCommand {
        }
        }


        switch (cmd) {
        switch (cmd) {
            case "suggestTelephonyTimeZone":
            case "suggest_telephony_time_zone":
                return runSuggestTelephonyTimeZone();
                return runSuggestTelephonyTimeZone();
            case "suggestManualTimeZone":
            case "suggest_manual_time_zone":
                return runSuggestManualTimeZone();
                return runSuggestManualTimeZone();
            default: {
            default: {
                return handleDefaultCommands(cmd);
                return handleDefaultCommands(cmd);
@@ -105,9 +105,9 @@ class TimeZoneDetectorShellCommand extends ShellCommand {
        pw.println("Time Zone Detector (time_zone_detector) commands:");
        pw.println("Time Zone Detector (time_zone_detector) commands:");
        pw.println("  help");
        pw.println("  help");
        pw.println("    Print this help text.");
        pw.println("    Print this help text.");
        pw.println("  suggestTelephonyTimeZone");
        pw.println("  suggest_telephony_time_zone");
        pw.println("    --suggestion <telephony suggestion opts>");
        pw.println("    --suggestion <telephony suggestion opts>");
        pw.println("  suggestManualTimeZone");
        pw.println("  suggest_manual_time_zone");
        pw.println("    --suggestion <manual suggestion opts>");
        pw.println("    --suggestion <manual suggestion opts>");
        pw.println();
        pw.println();
        ManualTimeZoneSuggestion.printCommandLineOpts(pw);
        ManualTimeZoneSuggestion.printCommandLineOpts(pw);