Fix dump Dependency

Test: adb shell dumpsys activity service com.android.systemui/.SystemUIService Dependency
Test: adb shell dumpsys activity service com.android.systemui/.SystemUIService dependency
Change-Id: I6c7fa060ab48321ae86f93ad14ff9621d2f498b1
This commit is contained in:
Fabian Kozynski
2019-09-17 16:33:10 -04:00
parent 7fc19171e3
commit 429f160f69

View File

@@ -84,7 +84,7 @@ public class SystemUIService extends Service {
}
} else {
String svc = args[0].toLowerCase();
if (Dependency.class.getName().endsWith(svc)) {
if (Dependency.class.getName().toLowerCase().endsWith(svc)) {
Dependency.staticDump(fd, pw, args);
}
for (SystemUI ui: services) {