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


The following commit(s) were added to refs/heads/master by this push:
     new 90dc8ba  Normalize array type declarations
90dc8ba is described below

commit 90dc8ba0020a9ceaf4fb97e97ff751505b205b02
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Aug 23 08:48:53 2023 -0400

    Normalize array type declarations
---
 src/main/java/org/apache/commons/ognl/SimpleNode.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/ognl/SimpleNode.java 
b/src/main/java/org/apache/commons/ognl/SimpleNode.java
index 0bbb1a7..25aa833 100644
--- a/src/main/java/org/apache/commons/ognl/SimpleNode.java
+++ b/src/main/java/org/apache/commons/ognl/SimpleNode.java
@@ -83,7 +83,7 @@ public abstract class SimpleNode
         }
         else if ( i >= children.length )
         {
-            Node c[] = new Node[i + 1];
+            Node[] c = new Node[i + 1];
             System.arraycopy( children, 0, c, 0, children.length );
             children = c;
         }

Reply via email to