fix error
This commit is contained in:
parent
a6ee788d67
commit
e34843c21d
@ -22,7 +22,8 @@ public abstract class AbstractProperty<T> implements Property<T> {
|
||||
|
||||
private PersistentObjectMapper<T> persistentObjectMapper;
|
||||
private ParameterMapMapper<T> parameterMapMapper;
|
||||
private boolean undefinedValue;
|
||||
|
||||
protected boolean undefinedValue;
|
||||
|
||||
public AbstractProperty(
|
||||
final ValueObject owner,
|
||||
|
@ -37,6 +37,7 @@ public class StringSetProperty extends AbstractProperty<StringSet> {
|
||||
|
||||
@Override
|
||||
public void setValue(final StringSet value) throws TechnicalException {
|
||||
undefinedValue = false;
|
||||
ReflectionUtil.invokeSetter(owningVO, getName(), value.getStrings());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user