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 fac70d08 Javadoc: Remove unnecessary open paragraph tag fac70d08 is described below commit fac70d089b3395d97ee98879398a00da8f43f4e3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 29 07:21:45 2024 -0500 Javadoc: Remove unnecessary open paragraph tag Format Javadoc class comment --- .../apache/commons/vfs2/provider/sftp/SftpStreamProxy.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpStreamProxy.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpStreamProxy.java index 01edf0fc..4ca7e771 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpStreamProxy.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpStreamProxy.java @@ -54,21 +54,19 @@ public class SftpStreamProxy implements Proxy { /** * Command pattern to execute on the proxy host. * <p> - * When run, the command output should be forwarded to the target host and port, and its input should be forwarded - * from the target host and port. + * When run, the command output should be forwarded to the target host and port, and its input should be forwarded from the target host and port. * </p> * <p> - * The command will be created for each host/port pair by using {@linkplain String#format(String, Object...)} with - * two objects: the target host name ({@linkplain String}) and the target port ({@linkplain Integer}). + * The command will be created for each host/port pair by using {@linkplain String#format(String, Object...)} with two objects: the target host name + * ({@linkplain String}) and the target port ({@linkplain Integer}). * </p> * <p> - * <p> * Here are two examples (that can be easily used by using the static members of this class): * </p> * <ul> * <li>{@code nc -q 0 %s %d} to use the netcat command ({@linkplain #NETCAT_COMMAND})</li> - * <li>{@code /bin/bash -c 'exec 3<>/dev/tcp/%s/%d; cat <&3 & cat >&3; kill $!} will use bash built-in TCP - * stream, which can be useful when there is no netcat available. ({@linkplain #BASH_TCP_COMMAND})</li> + * <li>{@code /bin/bash -c 'exec 3<>/dev/tcp/%s/%d; cat <&3 & cat >&3; kill $!} will use bash built-in TCP stream, which can be useful when there is no + * netcat available. ({@linkplain #BASH_TCP_COMMAND})</li> * </ul> */ private final String commandFormat;