Skip to content

Commit d6cc6af

Browse files
committed
work in progress
1 parent 82f4597 commit d6cc6af

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/main/java/org/woehlke/simpleworklist/project/ProjectServiceImpl.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,6 @@ public Project findByProjectId(@Min(1L) long projectId) {
8181
public Project add(@NotNull Project entity) {
8282
log.info("saveAndFlush");
8383
entity.setUuid(UUID.randomUUID().toString());
84-
/*
85-
if(entity.getContext()!=null){
86-
if(entity.getContext().getUuid() == null){
87-
entity.getContext().setUuid(UUID.randomUUID().toString());
88-
}
89-
}
90-
*/
9184
return projectRepository.saveAndFlush(entity);
9285
}
9386

0 commit comments

Comments
 (0)