Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid allocating lambda in PercentileTimer.computeIfAbsent
PercentileTimer.computeIfAbsent would delegate to Utils.computeIfAbsent, which actually eagerly calls get and then putIfAbsent if the timer is not in the underlying map. Just directly do that to avoid needing to allocate a lambda in the case the timer is present.
- Loading branch information