We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f4597 commit d6cc6afCopy full SHA for d6cc6af
src/main/java/org/woehlke/simpleworklist/project/ProjectServiceImpl.java
@@ -81,13 +81,6 @@ public Project findByProjectId(@Min(1L) long projectId) {
81
public Project add(@NotNull Project entity) {
82
log.info("saveAndFlush");
83
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
- */
91
return projectRepository.saveAndFlush(entity);
92
}
93
0 commit comments