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

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

Merge "Fix missing textservices dump in 'adb bugreport'"

parents 877553e3 02f646e6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -701,7 +701,8 @@ public class TextServicesManagerService extends ITextServicesManager.Stub {
    protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
        if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;

        if (args.length == 0) {  // Dump all users' data
        if (args.length == 0 || (args.length == 1 && args[0].equals("-a"))) {
            // Dump all users' data
            synchronized (mLock) {
                pw.println("Current Text Services Manager state:");
                pw.println("  Users:");