Skip to content
Snippets Groups Projects
Commit cd42f9d0 authored by fedoreno's avatar fedoreno
Browse files

SSDM-3284: fixing dtos with missing fields/logic

SVN: 35864
parent 85ae3365
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,9 @@ public class FieldUpdateValue<T> implements Serializable
@JsonIgnore
public void setValue(T value)
{
if (this.value == value) {
return;
}
this.value = value;
this.isModified = true;
}
......
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