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

Commit 961e50e9 authored by daqi's avatar daqi
Browse files

Fix TaskRecord wrong dump element firstActiveTime



[Cause of Defect]
Used wrong class field.

Test: manual - adb shell dumpsys activity a

Change-Id: I6f54e374709b6ae60f8adabd5c29a1f100941c42
Signed-off-by: default avatardaqi <daqi@xiaomi.com>
parent 6cdcba7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1777,7 +1777,7 @@ final class TaskRecord {
        pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
                pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
                pw.print(" isResizeable=" + isResizeable());
                pw.print(" firstActiveTime=" + lastActiveTime);
                pw.print(" firstActiveTime=" + firstActiveTime);
                pw.print(" lastActiveTime=" + lastActiveTime);
                pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
    }