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

commit 87c9eaec1a9d82f0c93719f8b22d35c542ed1e99
Author: Gary David Gregory (Code signing key) <ggreg...@apache.org>
AuthorDate: Sat Jun 22 08:49:43 2024 -0400

    Fix PMD UnnecessaryFullyQualifiedName
---
 src/main/java/org/apache/bcel/classfile/ArrayElementValue.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/classfile/ArrayElementValue.java 
b/src/main/java/org/apache/bcel/classfile/ArrayElementValue.java
index d932b112..e7c7e1d3 100644
--- a/src/main/java/org/apache/bcel/classfile/ArrayElementValue.java
+++ b/src/main/java/org/apache/bcel/classfile/ArrayElementValue.java
@@ -31,7 +31,7 @@ public class ArrayElementValue extends ElementValue {
         if (type != ARRAY) {
             throw new ClassFormatException("Only element values of type array 
can be built with this ctor - type specified: " + type);
         }
-        this.elementValues = elementValues != null ? elementValues : 
ElementValue.EMPTY_ARRAY;
+        this.elementValues = elementValues != null ? elementValues : 
EMPTY_ARRAY;
     }
 
     @Override

Reply via email to