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

Commit 17936d46 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fixes out of bounds error in ActivityMetricsLogger." into rvc-dev am:...

Merge "Fixes out of bounds error in ActivityMetricsLogger." into rvc-dev am: 2b75d73b am: 1858fd8d

Change-Id: I444be0c73cb55da6eafb0b2f1489bc1dbb66c34d
parents 406ef689 1858fd8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ class ActivityMetricsLogger {
    // Preallocated strings we are sending to tron, so we don't have to allocate a new one every
    // time we log.
    private static final String[] TRON_WINDOW_STATE_VARZ_STRINGS = {
            "window_time_0", "window_time_1", "window_time_2", "window_time_3"};
            "window_time_0", "window_time_1", "window_time_2", "window_time_3", "window_time_4"};

    private int mWindowState = WINDOW_STATE_STANDARD;
    private long mLastLogTimeSecs;