Skip to content

Commit e17ad8b

Browse files
committed
Javadoc: Empty Javadoc line before the 1st tag.
1 parent da726c3 commit e17ad8b

4 files changed

Lines changed: 10 additions & 0 deletions

File tree

src/main/java/org/apache/commons/net/ftp/FTP.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ public int noop() throws IOException {
990990
* command-name = <any FTP command which allows option setting>
991991
* command-options = <format specified by individual FTP command>
992992
* }</pre>
993+
*
993994
* @param commandNameOptions The OPTS command name and options.
994995
* @return The reply code received from the server.
995996
* @throws FTPConnectionClosedException If the FTP server prematurely closes the connection as a result of the client being idle or some other reason
@@ -1013,6 +1014,7 @@ public int opts(final String... commandNameOptions) throws IOException {
10131014
* command-name = <any FTP command which allows option setting>
10141015
* command-options = <format specified by individual FTP command>
10151016
* }</pre>
1017+
*
10161018
* @param commandName The OPTS command name.
10171019
* @param commandOptions The OPTS command options.
10181020
* @return The reply code received from the server.
@@ -1310,6 +1312,7 @@ public int sendCommand(final String command, final String args) throws IOExcepti
13101312
* <p>
13111313
* Please note that this has to be set before the connection is established.
13121314
* </p>
1315+
*
13131316
* @param charset The new character encoding for the control connection.
13141317
* @since 3.12.0
13151318
*/
@@ -1323,6 +1326,7 @@ public void setControlEncoding(final Charset charset) {
13231326
* <p>
13241327
* Please note that this has to be set before the connection is established.
13251328
* </p>
1329+
*
13261330
* @param encoding The new character encoding for the control connection.
13271331
*/
13281332
public void setControlEncoding(final String encoding) {

src/main/java/org/apache/commons/net/ftp/FTPClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1781,6 +1781,7 @@ public String getSize(final String path) throws IOException {
17811781
* <p>
17821782
* Issue the FTP STAT command to the server.
17831783
* </p>
1784+
*
17841785
* @return The status information returned by the server.
17851786
* @throws FTPConnectionClosedException If the FTP server prematurely closes the connection as a result of the client being idle or some other reason
17861787
* causing the server to send FTP reply code 421. This exception may be caught either as an IOException or

src/main/java/org/apache/commons/net/ftp/FTPCommand.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,24 +281,28 @@ public final class FTPCommand {
281281

282282
/**
283283
* Alias for {@value}.
284+
*
284285
* @since 2.0
285286
*/
286287
public static final int MOD_TIME = MDTM;
287288

288289
/**
289290
* Alias for {@value}.
291+
*
290292
* @since 2.2
291293
*/
292294
public static final int FEATURES = FEAT;
293295

294296
/**
295297
* Alias for {@value}.
298+
*
296299
* @since 2.2
297300
*/
298301
public static final int GET_MOD_TIME = MDTM;
299302

300303
/**
301304
* Alias for {@value}.
305+
*
302306
* @since 2.2
303307
*/
304308
public static final int SET_MOD_TIME = MFMT;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,7 @@ private FTPFile parseMemberList(final String entry) {
439439
* <li>z/OS-MVS Member lists,</li>
440440
* <li>Unix file lists.</li>
441441
* </ul>
442+
*
442443
* @since 2.0
443444
*/
444445
@Override

0 commit comments

Comments
 (0)