Skip to content

Commit 832a239

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent 6fb22f7 commit 832a239

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+141
-11
lines changed

src/main/java/org/apache/commons/net/DatagramSocketClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
* @see DatagramSocketFactory
4040
*/
4141
public abstract class DatagramSocketClient implements AutoCloseable {
42+
4243
/**
4344
* The default DatagramSocketFactory shared by all DatagramSocketClient instances.
4445
*/

src/main/java/org/apache/commons/net/DefaultSocketFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
* @see SocketClient#setSocketFactory
3838
*/
3939
public class DefaultSocketFactory extends SocketFactory {
40+
4041
/** The proxy to use when creating new sockets. */
4142
private final Proxy connProxy;
4243

src/main/java/org/apache/commons/net/echo/EchoUDPClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
*/
3535

3636
public final class EchoUDPClient extends DiscardUDPClient {
37+
3738
/** The default echo port. It is set to 7 according to RFC 862. */
3839
public static final int DEFAULT_PORT = 7;
3940

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2683,7 +2683,6 @@ public boolean reinitialize() throws IOException {
26832683
return false;
26842684
}
26852685

2686-
// For server to server transfers
26872686
/**
26882687
* Initiate a server to server file transfer. This method tells the server to which the client is connected to append to a given file on the other server.
26892688
* The other server must have had a {@code remoteRetrieve} issued to it by another FTPClient.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
* </p>
7070
*/
7171
public class FTPListParseEngine {
72+
7273
/**
7374
* An empty immutable {@code FTPFile} array.
7475
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* @since 1.2
2727
*/
2828
public interface FTPFileEntryParserFactory {
29+
2930
/**
3031
* <p>
3132
* Implementation should be a method that extracts a key from the supplied {@link FTPClientConfig FTPClientConfig} parameter and creates an object

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public interface FTPTimestampParser {
3131
* the default default date format.
3232
*/
3333
String DEFAULT_SDF = UnixFTPEntryParser.DEFAULT_DATE_FORMAT;
34+
3435
/**
3536
* the default recent date format.
3637
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
public class OS2FTPEntryParser extends ConfigurableFTPFileEntryParserImpl {
3333

3434
private static final String DEFAULT_DATE_FORMAT = "MM-dd-yy HH:mm"; // 11-09-01 12:30
35+
3536
/**
3637
* this is the regular expression used by this parser.
3738
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* </p>
3333
*/
3434
public abstract class RegexFTPFileEntryParserImpl extends FTPFileEntryParserImpl {
35+
3536
/**
3637
* Internal pattern the matcher tries to match, representing a file entry
3738
*/

src/main/java/org/apache/commons/net/imap/AuthenticatingIMAPClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public enum AUTH_METHOD {
4141
/** The standardized (RFC4616) PLAIN method, which sends the password unencrypted (insecure). */
4242

4343
PLAIN("PLAIN"),
44+
4445
/** The standardized (RFC2195) CRAM-MD5 method, which doesn't send the password (secure). */
4546

4647
CRAM_MD5("CRAM-MD5"),

0 commit comments

Comments
 (0)