Skip to content

Commit b178368

Browse files
committed
Fix malformed Javadoc comments
1 parent 45aa0ea commit b178368

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ The <action> type attribute can be add,update,fix,remove.
6565
<!-- FIX -->
6666
<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>
6767
<action type="fix" dev="ggregory" due-to="Jakub Kupczyk, Gary Gregory">Migrate tests to JUnit5 #358, #359.</action>
68+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix malformed Javadoc comments.</action>
6869
<!-- ADD -->
6970
<action type="add" dev="ggregory" due-to="Gary Gregory">Add DatagramSocketClient.getDefaultTimeoutDuration() and deprecate getDefaultTimeout().</action>
7071
<!-- UPDATE -->

src/main/java/org/apache/commons/net/ftp/parser/NetwareFTPEntryParser.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ protected FTPClientConfig getDefaultConfiguration() {
9393
* <p>
9494
* Netware file permissions are in the following format: RWCEAFMS, and are explained as follows:
9595
* <ul>
96-
* <li><strong>S</strong> - Supervisor; All rights.
97-
* <li><strong>R</strong> - Read; Right to open and read or execute.
98-
* <li><strong>W</strong> - Write; Right to open and modify.
99-
* <li><strong>C</strong> - Create; Right to create; when assigned to a file, allows a deleted file to be recovered.
100-
* <li><strong>E</strong> - Erase; Right to delete.
101-
* <li><strong>M</strong> - Modify; Right to rename a file and to change attributes.
102-
* <li><strong>F</strong> - File Scan; Right to see directory or file listings.
103-
* <li><strong>A</strong> - Access Control; Right to modify trustee assignments and the Inherited Rights Mask.
96+
* <li><strong>S</strong> - Supervisor; All rights.</li>
97+
* <li><strong>R</strong> - Read; Right to open and read or execute.</li>
98+
* <li><strong>W</strong> - Write; Right to open and modify.</li>
99+
* <li><strong>C</strong> - Create; Right to create; when assigned to a file, allows a deleted file to be recovered.</li>
100+
* <li><strong>E</strong> - Erase; Right to delete.</li>
101+
* <li><strong>M</strong> - Modify; Right to rename a file and to change attributes.</li>
102+
* <li><strong>F</strong> - File Scan; Right to see directory or file listings.</li>
103+
* <li><strong>A</strong> - Access Control; Right to modify trustee assignments and the Inherited Rights Mask.</li>
104104
* </ul>
105105
*
106106
* See <a href="https://www.novell.com/documentation/nfap10/index.html?page=/documentation/nfap10/nfaubook/data/abxraws.html"> here</a> for more details

0 commit comments

Comments
 (0)