Skip to content

Commit 6e01ca5

Browse files
authored
springboot 3.4.9 (#77)
Signed-off-by: Abdelsalem <[email protected]>
1 parent 23120c6 commit 6e01ca5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</developers>
4343

4444
<properties>
45-
<gridsuite-dependencies.version>43.0.0</gridsuite-dependencies.version>
45+
<gridsuite-dependencies.version>43.2.0</gridsuite-dependencies.version>
4646
<liquibase-hibernate-package>org.gridsuite.studyconfig.server</liquibase-hibernate-package>
4747
<sonar.organization>gridsuite</sonar.organization>
4848
<sonar.projectKey>org.gridsuite:study-config-server</sonar.projectKey>

src/main/java/org/gridsuite/studyconfig/server/service/SpreadsheetConfigService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public void duplicateColumn(UUID id, UUID columnId) {
410410
ColumnEntity columnEntity = entity.getColumns().stream().filter(col -> col.getUuid().equals(columnId))
411411
.findFirst().orElseThrow(() -> new EntityNotFoundException(COLUMN_NOT_FOUND + columnId));
412412
ColumnEntity columnCopy = columnEntity.toBuilder().build();
413-
columnCopy.setUuid(UUID.randomUUID());
413+
columnCopy.setUuid(null);
414414
Pair<String, String> idAndName = getDuplicateIdAndNameCandidate(entity, columnCopy.getId(), columnCopy.getName());
415415
columnCopy.setId(idAndName.getLeft());
416416
columnCopy.setName(idAndName.getRight());

0 commit comments

Comments
 (0)