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 2023/03/23 13:15:24 UTC

[commons-vfs] branch master updated: Javadoc

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


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

commit a35b615f3027a88a1638c8e5d9ea9bffcc483f61
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Mar 23 09:15:20 2023 -0400

    Javadoc
---
 .../src/main/java/org/apache/commons/vfs2/FileSystemOptions.java     | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSystemOptions.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSystemOptions.java
index 6727e352..4082c2ee 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSystemOptions.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSystemOptions.java
@@ -116,6 +116,11 @@ public final class FileSystemOptions implements Cloneable, Comparable<FileSystem
         this(new TreeMap<>());
     }
 
+    /**
+     * Constructs a new instance with the given options.
+     *
+     * @param options the options.
+     */
     protected FileSystemOptions(final Map<FileSystemOptionKey, Object> options) {
         this.options = options;
     }