Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Nov 29, 2023
1 parent 5311b4e commit f113c81
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1514,8 +1514,12 @@ LoadingCache<String, Optional<String>> getConfigValuesCache()
return configValuesCache;
}

private record CacheFactory(OptionalLong expiresAfterWriteMillis, OptionalLong refreshMillis, Optional<Executor> refreshExecutor, long maximumSize,
StatsRecording statsRecording)
private record CacheFactory(
OptionalLong expiresAfterWriteMillis,
OptionalLong refreshMillis,
Optional<Executor> refreshExecutor,
long maximumSize,
StatsRecording statsRecording)
{
private static final CacheFactory NEVER_CACHE = new CacheFactory(OptionalLong.empty(), OptionalLong.empty(), Optional.empty(), 0, StatsRecording.DISABLED);

Expand Down

0 comments on commit f113c81

Please sign in to comment.