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 <garydgreg...@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; }