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:
James Strachan 2008-08-27 18:28:41 +00:00
parent b9c25144ff
commit 261157cdd6
1 changed files with 1 additions and 1 deletions

View File

@ -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");