From 0138ecdb24ef7840eda5bd0d4b5163a6513b8c04 Mon Sep 17 00:00:00 2001 From: Kiran Prakash Date: Tue, 12 Mar 2024 13:39:01 -0700 Subject: [PATCH] remove lines in cleanup mgr Signed-off-by: Kiran Prakash --- .../main/java/org/opensearch/indices/IndicesRequestCache.java | 3 --- 1 file changed, 3 deletions(-) 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()) {