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

Commit 75ec0e4a authored by Winson's avatar Winson Committed by android-build-merger
Browse files

Merge "Fixing crash when dumping secondary SystemUI user service." into nyc-dev

am: 5d65340f

* commit '5d65340f':
  Fixing crash when dumping secondary SystemUI user service.

Change-Id: I000cd1818b2ad7f3cf097247b7c0eee0a427f44d
parents 8a05d513 5d65340f
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -16,11 +16,9 @@

package com.android.systemui;

import android.app.ActivityManager;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.Process;

import java.io.FileDescriptor;
import java.io.PrintWriter;
@@ -43,12 +41,15 @@ public class SystemUISecondaryUserService extends Service {
        SystemUI[] services = ((SystemUIApplication) getApplication()).getServices();
        if (args == null || args.length == 0) {
            for (SystemUI ui: services) {
                if (ui != null) {
                    pw.println("dumping service: " + ui.getClass().getName());
                    ui.dump(fd, pw, args);
                }
            }
        } else {
            String svc = args[0];
            for (SystemUI ui: services) {
                if (ui != null) {
                    String name = ui.getClass().getName();
                    if (name.endsWith(svc)) {
                        ui.dump(fd, pw, args);
@@ -57,4 +58,5 @@ public class SystemUISecondaryUserService extends Service {
            }
        }
    }
}