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 90c8c4141ad0d219f39f1a81d2b4e5d282d3f1ae
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 16 08:04:48 2024 -0400

    Fix PMD UnnecessaryFullyQualifiedName
---
 src/main/java/org/apache/commons/net/finger/FingerClient.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/net/finger/FingerClient.java 
b/src/main/java/org/apache/commons/net/finger/FingerClient.java
index c29dd180..d2294d08 100644
--- a/src/main/java/org/apache/commons/net/finger/FingerClient.java
+++ b/src/main/java/org/apache/commons/net/finger/FingerClient.java
@@ -107,7 +107,7 @@ public class FingerClient extends SocketClient {
             buffer.append(LONG_FLAG);
         }
         buffer.append(user);
-        buffer.append(SocketClient.NETASCII_EOL);
+        buffer.append(NETASCII_EOL);
 
         // Note: Charsets.toCharset() returns the platform default for null 
input
         final byte[] encodedQuery = 
buffer.toString().getBytes(Charsets.toCharset(encoding).name()); // Java 1.6 
can use

Reply via email to