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