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 0addb7e99f585ef0153bdde9a08afa98264f3053 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 6 14:28:03 2021 -0500 Javadoc and comment. --- .../java/org/apache/commons/vfs2/cache/AbstractFilesCache.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/AbstractFilesCache.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/AbstractFilesCache.java index 18073e0..9c795fb 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/AbstractFilesCache.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/AbstractFilesCache.java @@ -25,7 +25,12 @@ import org.apache.commons.vfs2.provider.AbstractVfsComponent; */ public abstract class AbstractFilesCache extends AbstractVfsComponent implements FilesCache { - // @Override - commented in FilesCache interface + /** + * Default implementation is a NOOP. + * + * @param file touch this file. + */ public void touchFile(final FileObject file) { + // empty } }