Skip to content
Snippets Groups Projects
Commit c23d7377 authored by gpawel's avatar gpawel
Browse files

bugfix: handling of special values of managed properties

SVN: 26393
parent 72bce6f7
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,10 @@ public class XmlStructuredPropertyConverter implements IStructuredPropertyConver ...@@ -62,7 +62,10 @@ public class XmlStructuredPropertyConverter implements IStructuredPropertyConver
public boolean canHandle(IManagedProperty property) public boolean canHandle(IManagedProperty property)
{ {
return property.getValue().startsWith("<" + ROOT_NAME); String propertyValue = property.getValue();
return propertyValue.startsWith("<" + ROOT_NAME)
|| ManagedProperty.isSpecialValue(propertyValue)
|| StringUtils.isBlank(propertyValue);
} }
@Override @Override
......
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