Skip to content

Commit

Permalink
[proxima-core] spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
je-ik committed Jan 9, 2024
1 parent 31455b0 commit 00d1ba5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import cz.o2.proxima.core.functional.Factory;
import cz.o2.proxima.internal.com.google.common.annotations.VisibleForTesting;

import java.util.Map;
import java.util.ServiceLoader;
import java.util.concurrent.ConcurrentHashMap;
Expand Down Expand Up @@ -50,7 +49,9 @@ public TimeAveragingMetric timeAveraging(
String group, String name, long windowLength, long checkpointMs, long purgeMs) {

return getOrCreate(
group, name, () -> new TimeAveragingMetric(group, name, windowLength, checkpointMs, purgeMs));
group,
name,
() -> new TimeAveragingMetric(group, name, windowLength, checkpointMs, purgeMs));
}

public TimeAveragingMetric timeAveraging(String group, String name, long windowLengthMs) {
Expand Down

0 comments on commit 00d1ba5

Please sign in to comment.