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 3bca8a12 Javadoc
3bca8a12 is described below

commit 3bca8a12316091d3f154a3360914fc508b499d82
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Dec 23 11:17:21 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/net/smtp/SMTP.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/smtp/SMTP.java 
b/src/main/java/org/apache/commons/net/smtp/SMTP.java
index 92a9a6fc..71cf4c66 100644
--- a/src/main/java/org/apache/commons/net/smtp/SMTP.java
+++ b/src/main/java/org/apache/commons/net/smtp/SMTP.java
@@ -64,9 +64,9 @@ public class SMTP extends SocketClient {
     /** The default SMTP port (25). */
     public static final int DEFAULT_PORT = 25;
 
-    // We have to ensure that the protocol communication is in ASCII,
-    // but we use ISO-8859-1 just in case 8-bit characters cross
-    // the wire.
+    /**
+     * We have to ensure that the protocol communication is in ASCII, but we 
use ISO-8859-1 just in case 8-bit characters cross the wire.
+     */
     private static final String DEFAULT_ENCODING = 
StandardCharsets.ISO_8859_1.name();
 
     /**

Reply via email to