mirror of https://github.com/apache/activemq.git
Fix compile issue
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@689547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b9c25144ff
commit
261157cdd6
|
@ -42,7 +42,7 @@ public class CompositeDataHelper {
|
|||
Object tabularObject = cdata.get(fieldName);
|
||||
if (tabularObject instanceof TabularData) {
|
||||
TabularData tabularData = (TabularData) tabularObject;
|
||||
Collection<CompositeData> values = tabularData.values();
|
||||
Collection<CompositeData> values = (Collection<CompositeData>) tabularData.values();
|
||||
for (CompositeData compositeData : values) {
|
||||
Object key = compositeData.get("key");
|
||||
Object value = compositeData.get("value");
|
||||
|
|
Loading…
Reference in New Issue