Description
The following code makes absolute no sense without an else for the "if(holder.isLocalValueSet())":
if(component instanceof EditableValueHolder) {
EditableValueHolder holder = (EditableValueHolder) component;
if(holder.isLocalValueSet())
{ value = holder.getLocalValue(); } value = getValue(component);
}
else
Plus: the local value handling is not even implemented in the 1.2.x branch!