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 9f8573c401d03666de7d470b6049a1123b3e5d4b
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jun 16 08:12:23 2024 -0400

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

diff --git a/src/main/java/org/apache/commons/net/pop3/POP3.java 
b/src/main/java/org/apache/commons/net/pop3/POP3.java
index 773e97d2..4140c84b 100644
--- a/src/main/java/org/apache/commons/net/pop3/POP3.java
+++ b/src/main/java/org/apache/commons/net/pop3/POP3.java
@@ -190,7 +190,7 @@ public class POP3 extends SocketClient {
 
         for (final String entry : replyLines) {
             buffer.append(entry);
-            buffer.append(SocketClient.NETASCII_EOL);
+            buffer.append(NETASCII_EOL);
         }
 
         return buffer.toString();
@@ -282,7 +282,7 @@ public class POP3 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