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

another bugfix

SVN: 24526
parent d539ee9a
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,10 @@ public class ManagedPropertyEvaluator ...@@ -146,7 +146,10 @@ public class ManagedPropertyEvaluator
{ {
if (updateFromBatchFunctionDefined == false) if (updateFromBatchFunctionDefined == false)
{ {
managedProperty.setValue(bindings.get("")); if (bindings.containsKey(""))
{
managedProperty.setValue(bindings.get(""));
}
} else } else
{ {
evaluator.set(PROPERTY_VARIABLE_NAME, managedProperty); evaluator.set(PROPERTY_VARIABLE_NAME, managedProperty);
......
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