From 5ace3a7315caa4de92173fc26296bc787c64595a Mon Sep 17 00:00:00 2001 From: Sagar Upadhyaya Date: Thu, 26 Oct 2023 16:30:39 -0700 Subject: [PATCH] Fixing javadoc warnings Signed-off-by: Sagar Upadhyaya --- .../cache/tier/TieredCacheSpilloverStrategyService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/main/java/org/opensearch/common/cache/tier/TieredCacheSpilloverStrategyService.java b/server/src/main/java/org/opensearch/common/cache/tier/TieredCacheSpilloverStrategyService.java index c148145274546..153dbf9b330f5 100644 --- a/server/src/main/java/org/opensearch/common/cache/tier/TieredCacheSpilloverStrategyService.java +++ b/server/src/main/java/org/opensearch/common/cache/tier/TieredCacheSpilloverStrategyService.java @@ -55,7 +55,7 @@ private TieredCacheSpilloverStrategyService(Builder builder) { * @param key Key for lookup. * @param loader Used to load value in case it is not present in any tier. * @return value - * @throws Exception + * @throws Exception exception thrown */ @Override public V computeIfAbsent(K key, TieredCacheLoader loader) throws Exception { @@ -80,7 +80,7 @@ public V get(K key) { /** * First fetches the tier type which has this key. And then invalidate accordingly. - * @param key + * @param key key to invalidate */ @Override public void invalidate(K key) {