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

Commit 9d6b131a authored by Sudheer Shanka's avatar Sudheer Shanka
Browse files

Declare size outside the loop.

Bug: 206518483
Change-Id: Ibeb5b287c549d6641000987acbd36c297df8b8e6
Test: treehugger
parent 12d66274
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -892,7 +892,8 @@ public class AppIdleHistory {
                }
                if (history.bucketExpiryTimesMs != null) {
                    xml.startTag(null, TAG_BUCKET_EXPIRY_TIMES);
                    for (int j = 0; j < history.bucketExpiryTimesMs.size(); ++j) {
                    final int size = history.bucketExpiryTimesMs.size();
                    for (int j = 0; j < size; ++j) {
                        final long expiryTimeMs = history.bucketExpiryTimesMs.valueAt(j);
                        // Skip writing to disk if the expiry time already elapsed.
                        if (expiryTimeMs < elapsedTimeMs) {
@@ -994,7 +995,8 @@ public class AppIdleHistory {
            return;
        }
        idpw.print("(");
        for (int i = 0; i < appUsageHistory.bucketExpiryTimesMs.size(); ++i) {
        final int size = appUsageHistory.bucketExpiryTimesMs.size();
        for (int i = 0; i < size; ++i) {
            final int bucket = appUsageHistory.bucketExpiryTimesMs.keyAt(i);
            final long expiryTimeMs = appUsageHistory.bucketExpiryTimesMs.valueAt(i);
            if (i != 0) {