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-vfs.git
commit aaba7932bad88620559f70478e387182371dd8fc Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 28 06:51:30 2025 -0400 Javadoc --- .../java/org/apache/commons/vfs2/cache/LRUFilesCache.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/LRUFilesCache.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/LRUFilesCache.java index 878aaafbc..0bf1744d0 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/LRUFilesCache.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/LRUFilesCache.java @@ -36,7 +36,7 @@ import org.apache.commons.vfs2.VfsLog; import org.apache.commons.vfs2.util.Messages; /** - * This implementation caches every file using {@link LRUMap}. + * Caches every file using an {@link LRUMap}. * <p> * The default constructor uses a LRU size of 100 per file system. * </p> @@ -44,9 +44,10 @@ import org.apache.commons.vfs2.util.Messages; public class LRUFilesCache extends AbstractFilesCache { /** - * The file cache + * The file cache. */ private class MyLRUMap extends LRUMap<FileName, FileObject> { + /** * serialVersionUID format is YYYYMMDD for the date of the last binary change. */ @@ -88,7 +89,7 @@ public class LRUFilesCache extends AbstractFilesCache { } } - /** The default LRU size */ + /** The default LRU size. */ private static final int DEFAULT_LRU_SIZE = 100; /** The logger to use. */ @@ -111,7 +112,7 @@ public class LRUFilesCache extends AbstractFilesCache { /** * Constructs a new instance with the desired LRU size. * - * @param lruSize the LRU size + * @param lruSize the LRU size. */ public LRUFilesCache(final int lruSize) { this.lruSize = lruSize; @@ -147,7 +148,7 @@ public class LRUFilesCache extends AbstractFilesCache { /** * Gets or creates a new Map. * - * @param fileSystem the key + * @param fileSystem the key. * @return an existing or new Map. */ protected Map<FileName, FileObject> getOrCreateFilesystemCache(final FileSystem fileSystem) {