=== modified file 'dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/fieldfilter/DefaultFieldFilterService.java' --- dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/fieldfilter/DefaultFieldFilterService.java 2014-06-26 07:46:13 +0000 +++ dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/fieldfilter/DefaultFieldFilterService.java 2014-07-01 13:05:51 +0000 @@ -211,7 +211,7 @@ { Collection collection = (Collection) returnValue; - child = complexNode.addChild( new CollectionNode( property.getCollectionName() ) ); + child = new CollectionNode( property.getCollectionName() ); child.setNamespace( property.getNamespace() ); if ( property.isIdentifiableObject() ) @@ -267,7 +267,7 @@ { if ( property.isCollection() ) { - child = complexNode.addChild( new CollectionNode( property.getCollectionName() ) ); + child = new CollectionNode( property.getCollectionName() ); child.setNamespace( property.getNamespace() ); for ( Object collectionObject : (Collection) returnValue )