It is a bug/typo: AbstractMapMetaData:

I just committed the fix...


  |    
  |    public Iterator getChildren()
  |    {
  |       ArrayList children = new ArrayList(map.keySet());
  | -      children.add(map.values());
  | +      children.addAll(map.values());
  |       return children.iterator();
  |    }
  | 

I should warn you that I haven't done anything except basic config tests (no 
injection/dependency tests) on the collections because I was waiting to see
what Alex could handle in the XML mapping. :-(

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3874381#3874381

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3874381


-------------------------------------------------------
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
_______________________________________________
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to