Skip to content

Commit

Permalink
MOSIP-30099 Update MachineSpecificationService for the bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: Yash S <[email protected]>
  • Loading branch information
yashmsonkusare committed Aug 6, 2024
1 parent 87b6f18 commit f05bb61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public IdAndLanguageCodeID createMachineSpecification(MachineSpecificationDto ma


try {
String uniqueId = generateId();
String uniqueId = machineSpecification.getId() != null ? machineSpecification.getId() : generateId();
machineSpecification.setId(uniqueId);
MachineSpecification entity = MetaDataUtils.setCreateMetaData(machineSpecification,
MachineSpecification.class);
Expand Down

0 comments on commit f05bb61

Please sign in to comment.