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

Commit f5875566 authored by Kweku Adams's avatar Kweku Adams Committed by Android (Google) Code Review
Browse files

Merge "Fix QuotaController dump." into sc-dev

parents 07d5fddf ed82890f
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -4075,7 +4075,16 @@ public final class QuotaController extends StateController {

        pw.println("Special apps:");
        pw.increaseIndent();
        pw.print("System installers", mSystemInstallers.toString());
        pw.print("System installers={");
        for (int si = 0; si < mSystemInstallers.size(); ++si) {
            if (si > 0) {
                pw.print(", ");
            }
            pw.print(mSystemInstallers.keyAt(si));
            pw.print("->");
            pw.print(mSystemInstallers.get(si));
        }
        pw.println("}");
        pw.decreaseIndent();

        pw.println();