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

Commit dd0f409b authored by Makoto Onuki's avatar Makoto Onuki Committed by android-build-merger
Browse files

Merge "Fix IndexOutOfRange in dumpsys content." into oc-dev

am: 28afa23a

Change-Id: I3d1079365f13400d1f23f6e61122e00c67432dd1
parents 3158673e 28afa23a
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1858,7 +1858,7 @@ public class SyncManager {
                    account.account.name, account.userId, account.account.type);

            pw.println("=======================================================================");
            final PrintTable table = new PrintTable(12);
            final PrintTable table = new PrintTable(13);
            table.set(0, 0,
                    "Authority", // 0
                    "Syncable",  // 1
@@ -1871,7 +1871,8 @@ public class SyncManager {
                    "User",      // 8
                    "Tot",       // 9
                    "Time",      // 10
                    "Last Sync" // 11
                    "Last Sync", // 11
                    "Etc"        // 12
            );

            final List<RegisteredServicesCache.ServiceInfo<SyncAdapterType>> sorted =
@@ -1921,6 +1922,7 @@ public class SyncManager {
                    }
                }

                row1 = row;
                if (status.lastSuccessTime != 0) {
                    table.set(row1++, 11, SyncStorageEngine.SOURCES[status.lastSuccessSource]
                            + " " + "SUCCESS");