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 2020/05/14 15:38:15 UTC

[commons-vfs] branch master updated: Add @since tags.

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 d9f6207  Add @since tags.
d9f6207 is described below

commit d9f6207da2420e56172c2b65086aef72b1b4684c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu May 14 11:38:10 2020 -0400

    Add @since tags.
---
 .../apache/commons/vfs2/provider/sftp/SftpFileSystemConfigBuilder.java  | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystemConfigBuilder.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystemConfigBuilder.java
index adb46df..75ee172 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystemConfigBuilder.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystemConfigBuilder.java
@@ -436,6 +436,7 @@ public final class SftpFileSystemConfigBuilder extends FileSystemConfigBuilder {
      * @return {@code true} if detection of exec channel should be disabled.
      *
      * @see #setDisableDetectExecChannel(FileSystemOptions, boolean)
+     * @since 2.7.0
      */
     public boolean isDisableDetectExecChannel(final FileSystemOptions opts) {
         return this.getBoolean(opts, DISABLE_DETECT_EXEC_CHANNEL, Boolean.FALSE);
@@ -503,6 +504,7 @@ public final class SftpFileSystemConfigBuilder extends FileSystemConfigBuilder {
      *
      * @param opts        The FileSystem options.
      * @param disableDetectExecChannel true if the detection of exec channel should be disabled.
+     * @since 2.7.0
      */
     public void setDisableDetectExecChannel(final FileSystemOptions opts, final boolean disableDetectExecChannel) {
         this.setParam(opts, DISABLE_DETECT_EXEC_CHANNEL, disableDetectExecChannel ? Boolean.TRUE : Boolean.FALSE);