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 d89606b8c8cdedcd7174ab11d7419f78c08af0e8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 28 06:47:36 2025 -0400 Camel case instance variable name --- .../main/java/org/apache/commons/vfs2/cache/LRUFilesCache.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 a8b735643..878aaafbc 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 @@ -53,11 +53,11 @@ public class LRUFilesCache extends AbstractFilesCache { private static final long serialVersionUID = 20101208L; /** The FileSystem */ - private final FileSystem filesystem; + private final FileSystem fileSystem; MyLRUMap(final FileSystem filesystem, final int size) { super(size, true); - this.filesystem = filesystem; + this.fileSystem = filesystem; } @Override @@ -77,9 +77,9 @@ public class LRUFilesCache extends AbstractFilesCache { if (super.removeLRU(linkEntry)) { // force detach IOUtils.closeQuietly(fileObject, e -> VfsLog.warn(getLogger(), log, Messages.getString("vfs.impl/LRUFilesCache-remove-ex.warn"), e)); - final Map<?, ?> files = fileSystemCache.get(filesystem); + final Map<?, ?> files = fileSystemCache.get(fileSystem); if (files.isEmpty()) { - fileSystemCache.remove(filesystem); + fileSystemCache.remove(fileSystem); } return true; }