Skip to content

Commit

Permalink
Javadoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Jun 23, 2024
1 parent 9adab4a commit 274fed2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/cedarsoftware/util/LRUCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
* <p>
* LRUCache supports <code>null</code> for both key or value.
* LRUCache supports <code>null</code> for both <b>key</b> or <b>value</b>.
* <p>
* <b>Special Thanks:</b> This implementation was inspired by insights and suggestions from Ben Manes.
* @see LockingLRUCacheStrategy
* @see ThreadedLRUCacheStrategy
* @see LRUCache.StrategyType
* <p>
* @author John DeRegnaucourt ([email protected])
* <br>
* Copyright (c) Cedar Software LLC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
* perfectly maintained under heavy load.
* <p>
* LRUCache supports <code>null</code> for both key or value.
* <p>
* <b>Special Thanks:</b> This implementation was inspired by insights and suggestions from Ben Manes.
* <p>
* @author John DeRegnaucourt ([email protected])
* <br>
* Copyright (c) Cedar Software LLC
Expand Down

0 comments on commit 274fed2

Please sign in to comment.