From 274fed2e4b0dc11e749893a59b5b6f7b18725eb0 Mon Sep 17 00:00:00 2001 From: John DeRegnaucourt Date: Sun, 23 Jun 2024 17:05:32 -0400 Subject: [PATCH] Javadoc updates --- src/main/java/com/cedarsoftware/util/LRUCache.java | 4 ++-- .../com/cedarsoftware/util/cache/LockingLRUCacheStrategy.java | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/cedarsoftware/util/LRUCache.java b/src/main/java/com/cedarsoftware/util/LRUCache.java index 120f7258..8fd44784 100644 --- a/src/main/java/com/cedarsoftware/util/LRUCache.java +++ b/src/main/java/com/cedarsoftware/util/LRUCache.java @@ -32,12 +32,12 @@ * with cleaning up items above the capacity threshold. This means that the cache may temporarily exceed its capacity, but * it will soon be trimmed back to the capacity limit by the scheduled thread. *

- * LRUCache supports null for both key or value. + * LRUCache supports null for both key or value. *

+ * Special Thanks: This implementation was inspired by insights and suggestions from Ben Manes. * @see LockingLRUCacheStrategy * @see ThreadedLRUCacheStrategy * @see LRUCache.StrategyType - *

* @author John DeRegnaucourt (jdereg@gmail.com) *
* Copyright (c) Cedar Software LLC diff --git a/src/main/java/com/cedarsoftware/util/cache/LockingLRUCacheStrategy.java b/src/main/java/com/cedarsoftware/util/cache/LockingLRUCacheStrategy.java index ea555282..272af669 100644 --- a/src/main/java/com/cedarsoftware/util/cache/LockingLRUCacheStrategy.java +++ b/src/main/java/com/cedarsoftware/util/cache/LockingLRUCacheStrategy.java @@ -18,9 +18,6 @@ * perfectly maintained under heavy load. *

* LRUCache supports null for both key or value. - *

- * Special Thanks: This implementation was inspired by insights and suggestions from Ben Manes. - *

* @author John DeRegnaucourt (jdereg@gmail.com) *
* Copyright (c) Cedar Software LLC