Skip to content
Snippets Groups Projects
Commit 8d246932 authored by felmer's avatar felmer
Browse files

SSDM-387: handle case if getProperties() returns null

SVN: 31732
parent 36500cf5
No related branches found
No related tags found
No related merge requests found
...@@ -173,6 +173,10 @@ public class MetaDataBuilder ...@@ -173,6 +173,10 @@ public class MetaDataBuilder
private void addProperties(String category, List<IEntityProperty> properties) private void addProperties(String category, List<IEntityProperty> properties)
{ {
if (properties == null)
{
return;
}
Collections.sort(properties, PROPERTIES_COMPARATOR); Collections.sort(properties, PROPERTIES_COMPARATOR);
for (IEntityProperty property : properties) for (IEntityProperty property : properties)
{ {
......
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