Skip to content

Commit

Permalink
DBZ-6998: Update code for style copliance
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwook-chan authored and nancyxu123 committed Oct 21, 2024
1 parent 1d03ec2 commit e425b99
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ void set(Duration lastDuration) {
total.accumulateAndGet(lastDuration, Duration::plus);
count.incrementAndGet();

average.set(
total.get()
.dividedBy(count.get())
);
average.set(total.get().dividedBy(count.get()));

last.set(lastDuration);

Expand Down

0 comments on commit e425b99

Please sign in to comment.