This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 201f6cca48 org.apache.juneau.common.reflect API improvements
201f6cca48 is described below

commit 201f6cca48d91a38ab6bb20c3fdc99bddd149a22
Author: James Bognar <[email protected]>
AuthorDate: Mon Nov 24 11:19:32 2025 -0500

    org.apache.juneau.common.reflect API improvements
---
 .../src/main/java/org/apache/juneau/BeanPropertyMeta.java           | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanPropertyMeta.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanPropertyMeta.java
index 719e333493..ee320dc465 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanPropertyMeta.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanPropertyMeta.java
@@ -236,7 +236,7 @@ public class BeanPropertyMeta implements 
Comparable<BeanPropertyMeta> {
                                                swap = getPropertySwap(x);
                                        if (! x.properties().isEmpty())
                                                properties = 
splita(x.properties());
-                                       addAll(bdClasses, x.dictionary());
+                                       addAll(bdClasses, 
(Object[])x.dictionary());
                                        if (! x.ro().isEmpty())
                                                readOnly = 
Boolean.valueOf(x.ro());
                                        if (! x.wo().isEmpty())
@@ -256,7 +256,7 @@ public class BeanPropertyMeta implements 
Comparable<BeanPropertyMeta> {
                                                swap = getPropertySwap(x);
                                        if (nn(properties) && ! 
x.properties().isEmpty())
                                                properties = 
splita(x.properties());
-                                       addAll(bdClasses, x.dictionary());
+                                       addAll(bdClasses, 
(Object[])x.dictionary());
                                        if (! x.ro().isEmpty())
                                                readOnly = 
Boolean.valueOf(x.ro());
                                        if (! x.wo().isEmpty())
@@ -275,7 +275,7 @@ public class BeanPropertyMeta implements 
Comparable<BeanPropertyMeta> {
                                                swap = getPropertySwap(x);
                                        if (nn(properties) && ! 
x.properties().isEmpty())
                                                properties = 
splita(x.properties());
-                                       addAll(bdClasses, x.dictionary());
+                                       addAll(bdClasses, 
(Object[])x.dictionary());
                                        if (! x.ro().isEmpty())
                                                readOnly = 
Boolean.valueOf(x.ro());
                                        if (! x.wo().isEmpty())

Reply via email to