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
commit b1783682ca21390d999dbb19cf4f3e8c75a9ba6a Author: Gary Gregory <[email protected]> AuthorDate: Sat Dec 13 15:37:55 2025 -0500 Fix malformed Javadoc comments --- src/changes/changes.xml | 1 + .../commons/net/ftp/parser/NetwareFTPEntryParser.java | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index f8db3c65..a769b1b6 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -65,6 +65,7 @@ The <action> type attribute can be add,update,fix,remove. <!-- FIX --> <action type="fix" dev="ggregory" due-to="Henri Biestro, Gary Gregory">org.apache.commons.net.daytime.DaytimeTCPClientTest now should now pass inside most VPNs.</action> <action type="fix" dev="ggregory" due-to="Jakub Kupczyk, Gary Gregory">Migrate tests to JUnit5 #358, #359.</action> + <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix malformed Javadoc comments.</action> <!-- ADD --> <action type="add" dev="ggregory" due-to="Gary Gregory">Add DatagramSocketClient.getDefaultTimeoutDuration() and deprecate getDefaultTimeout().</action> <!-- UPDATE --> diff --git a/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java b/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java index adaa3b8f..08282e6b 100644 --- a/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java +++ b/src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java @@ -93,14 +93,14 @@ public class NetwareFTPEntryParser extends ConfigurableFTPFileEntryParserImpl { * <p> * Netware file permissions are in the following format: RWCEAFMS, and are explained as follows: * <ul> - * <li><strong>S</strong> - Supervisor; All rights. - * <li><strong>R</strong> - Read; Right to open and read or execute. - * <li><strong>W</strong> - Write; Right to open and modify. - * <li><strong>C</strong> - Create; Right to create; when assigned to a file, allows a deleted file to be recovered. - * <li><strong>E</strong> - Erase; Right to delete. - * <li><strong>M</strong> - Modify; Right to rename a file and to change attributes. - * <li><strong>F</strong> - File Scan; Right to see directory or file listings. - * <li><strong>A</strong> - Access Control; Right to modify trustee assignments and the Inherited Rights Mask. + * <li><strong>S</strong> - Supervisor; All rights.</li> + * <li><strong>R</strong> - Read; Right to open and read or execute.</li> + * <li><strong>W</strong> - Write; Right to open and modify.</li> + * <li><strong>C</strong> - Create; Right to create; when assigned to a file, allows a deleted file to be recovered.</li> + * <li><strong>E</strong> - Erase; Right to delete.</li> + * <li><strong>M</strong> - Modify; Right to rename a file and to change attributes.</li> + * <li><strong>F</strong> - File Scan; Right to see directory or file listings.</li> + * <li><strong>A</strong> - Access Control; Right to modify trustee assignments and the Inherited Rights Mask.</li> * </ul> * * See <a href="https://www.novell.com/documentation/nfap10/index.html?page=/documentation/nfap10/nfaubook/data/abxraws.html"> here</a> for more details
