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

Commit 0164f5e1 authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge "Merge "Remove no-op std::max call" am: c00af4c5 am: ef5e579c am:...

Merge "Merge "Remove no-op std::max call" am: c00af4c5 am: ef5e579c am: f3310cb3" into oc-dev-plus-aosp
am: d1a0cdc8

Change-Id: I5ba3c71615c0c4bbb777d5c31458a586243c67eb
parents 5dd46687 d1a0cdc8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -291,7 +291,6 @@ void JankTracker::addFrame(const FrameInfo& frame) {
                / kSlowFrameBucketIntervalMs;
        framebucket = std::min(framebucket,
                static_cast<uint32_t>(mData->slowFrameCounts.size() - 1));
        framebucket = std::max(framebucket, 0u);
        mData->slowFrameCounts[framebucket]++;
    }