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-text.git

commit bd83c9aa4ea6da149ec859ff842571f977302a5c
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 19 13:41:49 2025 -0400

    Fix PMD UnnecessaryFullyQualifiedName in JavaPlatformStringLookup
---
 src/changes/changes.xml                                      |  1 +
 .../apache/commons/text/lookup/JavaPlatformStringLookup.java | 12 ++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 3aed2034..4af56c0b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -50,6 +50,7 @@ The <action> type attribute can be add,update,fix,remove.
     <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD 
UnnecessaryFullyQualifiedName in StringLookupFactory.</action>
     <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD 
UnnecessaryFullyQualifiedName in DefaultStringLookupsHolder.</action>
     <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD 
UnnecessaryFullyQualifiedName in PropertiesStringLookup.</action>
+    <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix PMD 
UnnecessaryFullyQualifiedName in JavaPlatformStringLookup.</action>
     <!-- ADD -->
     <action type="add" dev="ggregory" due-to="Gary Gregory">Interface 
StringLookup now extends UnaryOperator&lt;String&gt;.</action>
     <action type="add" dev="ggregory" due-to="Gary Gregory">Interface 
TextRandomProvider extends IntUnaryOperator.</action>
diff --git 
a/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java 
b/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
index dea176ef..da1048bb 100644
--- a/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
@@ -83,12 +83,12 @@ final class JavaPlatformStringLookup extends 
AbstractStringLookup {
      */
     public static void main(final String[] args) {
         System.out.println(JavaPlatformStringLookup.class);
-        System.out.printf("%s = %s%n", KEY_VERSION, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_VERSION));
-        System.out.printf("%s = %s%n", KEY_RUNTIME, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_RUNTIME));
-        System.out.printf("%s = %s%n", KEY_VM, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_VM));
-        System.out.printf("%s = %s%n", KEY_OS, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_OS));
-        System.out.printf("%s = %s%n", KEY_HARDWARE, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_HARDWARE));
-        System.out.printf("%s = %s%n", KEY_LOCALE, 
JavaPlatformStringLookup.INSTANCE.lookup(KEY_LOCALE));
+        System.out.printf("%s = %s%n", KEY_VERSION, 
INSTANCE.lookup(KEY_VERSION));
+        System.out.printf("%s = %s%n", KEY_RUNTIME, 
INSTANCE.lookup(KEY_RUNTIME));
+        System.out.printf("%s = %s%n", KEY_VM, INSTANCE.lookup(KEY_VM));
+        System.out.printf("%s = %s%n", KEY_OS, INSTANCE.lookup(KEY_OS));
+        System.out.printf("%s = %s%n", KEY_HARDWARE, 
INSTANCE.lookup(KEY_HARDWARE));
+        System.out.printf("%s = %s%n", KEY_LOCALE, 
INSTANCE.lookup(KEY_LOCALE));
     }
 
     /**

Reply via email to