You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/08/23 12:38:44 UTC

[commons-beanutils] branch master updated: Normalize array type declarations

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


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

commit 9b05d41cccbaa4e7713bf0ab085c96f41f96ab0e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Aug 23 08:38:40 2023 -0400

    Normalize array type declarations
---
 src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java b/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
index 757df940..b66380e5 100644
--- a/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/DynaBeanUtilsTestCase.java
@@ -827,7 +827,7 @@ public class DynaBeanUtilsTestCase extends TestCase {
         try {
 
             final HashMap<String, Object> map = new HashMap<>();
-            // int intArray[] = new int[] { 123, 456, 789 };
+            // int[] intArray = new int[] { 123, 456, 789 };
             final String[] intArrayIn = { "123", "456", "789" };
             map.put("intArray", intArrayIn);
             String[] stringArray = { "New String 0", "New String 1" };