From f113c815a0634749a11534fcf3e00664ddb30f01 Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Wed, 29 Nov 2023 11:25:05 +0100 Subject: [PATCH] Fix code style --- .../plugin/hive/metastore/cache/CachingHiveMetastore.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugin/trino-hive/src/main/java/io/trino/plugin/hive/metastore/cache/CachingHiveMetastore.java b/plugin/trino-hive/src/main/java/io/trino/plugin/hive/metastore/cache/CachingHiveMetastore.java index 478c865c3700..595e4f684e85 100644 --- a/plugin/trino-hive/src/main/java/io/trino/plugin/hive/metastore/cache/CachingHiveMetastore.java +++ b/plugin/trino-hive/src/main/java/io/trino/plugin/hive/metastore/cache/CachingHiveMetastore.java @@ -1514,8 +1514,12 @@ LoadingCache> getConfigValuesCache() return configValuesCache; } - private record CacheFactory(OptionalLong expiresAfterWriteMillis, OptionalLong refreshMillis, Optional refreshExecutor, long maximumSize, - StatsRecording statsRecording) + private record CacheFactory( + OptionalLong expiresAfterWriteMillis, + OptionalLong refreshMillis, + Optional refreshExecutor, + long maximumSize, + StatsRecording statsRecording) { private static final CacheFactory NEVER_CACHE = new CacheFactory(OptionalLong.empty(), OptionalLong.empty(), Optional.empty(), 0, StatsRecording.DISABLED);