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

commit e97cd0ff6090d5ac6103b1433fc723e968ff193f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 16 08:07:15 2024 -0400

    Fix PMD UnnecessaryFullyQualifiedName
---
 src/main/java/org/apache/commons/net/imap/IMAP.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/imap/IMAP.java 
b/src/main/java/org/apache/commons/net/imap/IMAP.java
index 71f93908..999b08f3 100644
--- a/src/main/java/org/apache/commons/net/imap/IMAP.java
+++ b/src/main/java/org/apache/commons/net/imap/IMAP.java
@@ -300,7 +300,7 @@ public class IMAP extends SocketClient {
         final StringBuilder buffer = new StringBuilder(256);
         for (final String s : replyLines) {
             buffer.append(s);
-            buffer.append(SocketClient.NETASCII_EOL);
+            buffer.append(NETASCII_EOL);
         }
 
         return buffer.toString();
@@ -390,7 +390,7 @@ public class IMAP extends SocketClient {
             __commandBuffer.append(' ');
             __commandBuffer.append(args);
         }
-        __commandBuffer.append(SocketClient.NETASCII_EOL);
+        __commandBuffer.append(NETASCII_EOL);
 
         final String message = __commandBuffer.toString();
         __writer.write(message);

Reply via email to