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

commit 83deb8115a309b7cd57f2f45e9a8e35eae6f0196
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jun 23 10:01:54 2024 -0400

    Fix PMD UnnecessaryFullyQualifiedName
---
 .../org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java 
b/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java
index 5fa85de..e6f30a6 100644
--- 
a/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java
+++ 
b/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java
@@ -119,8 +119,7 @@ public class CollectionPointer extends NodePointer {
             }
             else {
                 final Object value = getImmediateNode();
-                valuePointer =
-                    NodePointer.newChildNodePointer(this, getName(), value);
+                valuePointer = newChildNodePointer(this, getName(), value);
             }
         }
         return valuePointer;

Reply via email to