Merge remote-tracking branch 'origin/dmp-refactoring' into email-editor
This commit is contained in:
commit
8c42b784ba
|
@ -54,8 +54,8 @@ public class PropertyDefinitionFieldSetPersist {
|
|||
|
||||
@Override
|
||||
protected List<Specification> specifications(PropertyDefinitionFieldSetPersist item) {
|
||||
int min = fieldSetEntity != null && fieldSetEntity.getHasMultiplicity() && fieldSetEntity.getMultiplicity() != null ? fieldSetEntity.getMultiplicity().getMin() : 0;
|
||||
int max = fieldSetEntity != null && fieldSetEntity.getHasMultiplicity() && fieldSetEntity.getMultiplicity() != null ? fieldSetEntity.getMultiplicity().getMax() : Integer.MAX_VALUE;
|
||||
int min = fieldSetEntity != null && fieldSetEntity.getHasMultiplicity() && fieldSetEntity.getMultiplicity() != null && fieldSetEntity.getMultiplicity().getMin() != null ? fieldSetEntity.getMultiplicity().getMin() : 0;
|
||||
int max = fieldSetEntity != null && fieldSetEntity.getHasMultiplicity() && fieldSetEntity.getMultiplicity() != null && fieldSetEntity.getMultiplicity().getMax() != null ? fieldSetEntity.getMultiplicity().getMax() : Integer.MAX_VALUE;
|
||||
|
||||
return Arrays.asList(
|
||||
this.navSpec()
|
||||
|
|
Loading…
Reference in New Issue