You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/27 13:41:35 UTC

[commons-vfs] 03/06: Add missing Javadocs.

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 dcaeb6b3529d499f4313b7cccd6981361db2ef6f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 27 08:36:59 2021 -0500

    Add missing Javadocs.
---
 .../java/org/apache/commons/vfs2/cache/OnCallRefreshFileObject.java  | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/OnCallRefreshFileObject.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/OnCallRefreshFileObject.java
index 1a041b7..14620d2 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/OnCallRefreshFileObject.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/OnCallRefreshFileObject.java
@@ -31,6 +31,11 @@ import org.apache.commons.vfs2.impl.DecoratedFileObject;
  */
 public class OnCallRefreshFileObject extends DecoratedFileObject {
 
+    /**
+     * Constructs a new instance to decorate the given file object.
+     *
+     * @param fileObject The decorated.
+     */
     public OnCallRefreshFileObject(final FileObject fileObject) {
         super(fileObject);
     }