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 2cd1c5b Checkstyle fixes. 2cd1c5b is described below commit 2cd1c5b9ba700cf2f3d4023bd5fe8ed981151642 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Feb 2 13:50:10 2021 -0500 Checkstyle fixes. --- .../java/org/apache/commons/net/examples/mail/IMAPExportMbox.java | 3 ++- src/main/java/org/apache/commons/net/util/SSLSocketUtils.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java index cdf6c30..44bacad 100644 --- a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java +++ b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java @@ -209,7 +209,8 @@ public final class IMAPExportMbox throw new IOException("mailbox file: " + mboxFile + " already exists and is non-empty!"); } System.out.println("Creating file " + mboxFile); - chunkListener = new MboxListener(new BufferedWriter(new FileWriter(mboxFile)), eol, printHash, printMarker, checkSequence); + chunkListener = new MboxListener(new BufferedWriter(new FileWriter(mboxFile)), eol, printHash, printMarker, + checkSequence); } final String path = uri.getPath(); diff --git a/src/main/java/org/apache/commons/net/util/SSLSocketUtils.java b/src/main/java/org/apache/commons/net/util/SSLSocketUtils.java index f06ff9e..ce18a02 100644 --- a/src/main/java/org/apache/commons/net/util/SSLSocketUtils.java +++ b/src/main/java/org/apache/commons/net/util/SSLSocketUtils.java @@ -25,7 +25,7 @@ import javax.net.ssl.SSLSocket; /** * General utilities for SSLSocket. - * + * * @since 3.4 */ public class SSLSocketUtils { @@ -35,7 +35,7 @@ public class SSLSocketUtils { /** * Enable the HTTPS endpoint identification algorithm on an SSLSocket. - * + * * @param socket the SSL socket * @return {@code true} on success (this is only supported on Java 1.7+) */