<action dev="jahlborn" type="fix" system="SourceForge2" issue="141">
Handle more advanced query join constructs.
</action>
+ <action dev="jahlborn" type="fix" system="SourceForge2" issue="144">
+ Fix writing of property maps without any properties.
+ </action>
</release>
<release version="2.1.8" date="2017-06-25">
<action dev="jahlborn" type="fix" system="SourceForge2" issue="142">
}
}
+ if(propNames.isEmpty()) {
+ return null;
+ }
+
// write the full set of property names
writeBlock(null, propNames, PROPERTY_NAME_LIST, bab);
// write all the map values
for(PropertyMapImpl propMap : maps) {
- writeBlock(propMap, propNames, propMap.getType(), bab);
+ if(!propMap.isEmpty()) {
+ writeBlock(propMap, propNames, propMap.getType(), bab);
+ }
}
return bab.toArray();