Skip to content
Snippets Groups Projects
Commit ad238f1e authored by juanf's avatar juanf
Browse files

SSDM-387: Improve metadata captured in archiving operation. Check properties != null

SVN: 31730
parent b6c3ecd1
No related branches found
No related tags found
No related merge requests found
......@@ -249,6 +249,10 @@ public class MetaDataBuilder
private void containerProperties(int number, String subCategory, List<IEntityProperty> properties)
{
if(properties == null) {
properties = new ArrayList<IEntityProperty>();
}
if(subCategory != null) {
addProperties(CONTAINER + "[" + number + "]." + subCategory, properties);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment