This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git


The following commit(s) were added to refs/heads/master by this push:
     new 84bf4871 Javadoc
84bf4871 is described below

commit 84bf48711c690517c94df6f52d70412d4bb30156
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 18 09:51:59 2024 -0400

    Javadoc
---
 .../commons/jcs3/auxiliary/AbstractAuxiliaryCacheEventLogging.java  | 6 +++---
 .../apache/commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java    | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AbstractAuxiliaryCacheEventLogging.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AbstractAuxiliaryCacheEventLogging.java
index 8c79d456..d5ed3492 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AbstractAuxiliaryCacheEventLogging.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/AbstractAuxiliaryCacheEventLogging.java
@@ -194,7 +194,7 @@ public abstract class AbstractAuxiliaryCacheEventLogging<K, 
V>
         throws IOException;
 
     /**
-     * Implementation of get.
+     * Implements get.
      *
      * @param key
      * @return ICacheElement, a wrapper around the key, value, and attributes
@@ -204,7 +204,7 @@ public abstract class AbstractAuxiliaryCacheEventLogging<K, 
V>
         throws IOException;
 
     /**
-     * Implementation of getMatching.
+     * Implements getMatching.
      *
      * @param pattern
      * @return a map of K key to ICacheElement&lt;K, V&gt; element, or an 
empty map if there is no
@@ -233,7 +233,7 @@ public abstract class AbstractAuxiliaryCacheEventLogging<K, 
V>
         throws IOException;
 
     /**
-     * Implementation of put.
+     * Implements put.
      *
      * @param cacheElement
      * @throws IOException
diff --git 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java
 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java
index f0080515..eba24272 100644
--- 
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java
+++ 
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/engine/memory/lru/LHMLRUMemoryCache.java
@@ -32,13 +32,13 @@ import org.apache.commons.jcs3.log.Log;
 import org.apache.commons.jcs3.log.LogManager;
 
 /**
- * This is a test memory manager using the jdk1.4 LinkedHashMap.
+ * This is a test memory manager using the stock {@link LinkedHashMap}.
  */
 public class LHMLRUMemoryCache<K, V>
     extends AbstractMemoryCache<K, V>
 {
     /**
-     * Implementation of removeEldestEntry in LinkedHashMap
+     * Implements removeEldestEntry from {@link LinkedHashMap}.
      */
     protected class LHMSpooler
         extends java.util.LinkedHashMap<K, MemoryElementDescriptor<K, V>>

Reply via email to