OMS: dump: silently ignore -a

dumpsys will pass -a to each service. Teach the overlay manager to
silently ignore the argument.

Test: adb shell dumpsys | grep --text -A1 -e 'DUMP OF SERVICE overlay:' # no "Unknown argument: -a"
Change-Id: I00a786a8a3cd5996bfac95e05782b2f204f005c5
This commit is contained in:
Mårten Kongstad
2022-09-15 10:57:39 +02:00
parent beb81263e4
commit 695bf3ca78

View File

@@ -1009,7 +1009,9 @@ public final class OverlayManagerService extends SystemService {
}
opti++;
if ("-h".equals(opt)) {
if ("-a".equals(opt)) {
// dumpsys will pass in -a; silently ignore it
} else if ("-h".equals(opt)) {
pw.println("dump [-h] [--verbose] [--user USER_ID] [[FIELD] PACKAGE]");
pw.println(" Print debugging information about the overlay manager.");
pw.println(" With optional parameter PACKAGE, limit output to the specified");