diff --git a/server/src/main/java/org/opensearch/indices/IndicesRequestCache.java b/server/src/main/java/org/opensearch/indices/IndicesRequestCache.java index 40852c4f8fdb7..4cc118076d6b5 100644 --- a/server/src/main/java/org/opensearch/indices/IndicesRequestCache.java +++ b/server/src/main/java/org/opensearch/indices/IndicesRequestCache.java @@ -492,7 +492,6 @@ class IndicesRequestCacheCleanupManager { * Enqueue cleanup key. * * @param cleanupKey the cleanup key - * */ void enqueueCleanupKey(CleanupKey cleanupKey) { keysToClean.add(cleanupKey); @@ -592,8 +591,6 @@ private void forceCleanCache() { * Cleans the cache based on the provided staleness threshold. *

If the percentage of stale keys in the cache is less than this threshold,the cache cleanup process is skipped. * @param threshold The staleness threshold as a double. - * - * */ private void cleanCache(double threshold) { if (logger.isDebugEnabled()) {