fixed compilation
This commit is contained in:
parent
91ae7d9d0d
commit
8c4d5c50f8
1 changed files with 3 additions and 1 deletions
|
@ -199,7 +199,9 @@ public class ConfigurationValueDAOImpl implements ConfigurationValueDAO {
|
||||||
|
|
||||||
createNew(data);
|
createNew(data);
|
||||||
return getByProperties(data)
|
return getByProperties(data)
|
||||||
.orElseThrow();
|
.orElseThrow(() -> new ResourceNotFoundException(
|
||||||
|
EntityType.CONFIGURATION_VALUE,
|
||||||
|
String.valueOf(data.attributeId)));
|
||||||
|
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue