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-net.git
The following commit(s) were added to refs/heads/master by this push: new ebc4d42 Javadoc. ebc4d42 is described below commit ebc4d429a0cf6c379f0b4fbd66e79d426550007d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 17 14:48:15 2020 -0500 Javadoc. --- src/main/java/org/apache/commons/net/ftp/parser/MLSxEntryParser.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/net/ftp/parser/MLSxEntryParser.java b/src/main/java/org/apache/commons/net/ftp/parser/MLSxEntryParser.java index ae23c81..60dcae8 100644 --- a/src/main/java/org/apache/commons/net/ftp/parser/MLSxEntryParser.java +++ b/src/main/java/org/apache/commons/net/ftp/parser/MLSxEntryParser.java @@ -32,6 +32,7 @@ import org.apache.commons.net.ftp.FTPFileEntryParserImpl; * Parser class for MSLT and MLSD replies. See RFC 3659. * <p> * Format is as follows: + * </p> * <pre> * entry = [ facts ] SP pathname * facts = 1*( fact ";" ) @@ -47,10 +48,12 @@ import org.apache.commons.net.ftp.FTPFileEntryParserImpl; * Sample os-depend-fact: * UNIX.group=0;UNIX.mode=0755;UNIX.owner=0; * </pre> + * <p> * A single control response entry (MLST) is returned with a leading space; * multiple (data) entries are returned without any leading spaces. * The parser requires that the leading space from the MLST entry is removed. * MLSD entries can begin with a single space if there are no facts. + * </p> * * @since 3.0 */