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

Commit 429f160f authored by Fabian Kozynski's avatar Fabian Kozynski
Browse files

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
parent 7fc19171
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {