refactor: Fix yellow code smells #27

Merged
jank merged 11 commits from refactor/fix-yellow-code-smells into main 2024-10-02 08:43:02 +00:00
Showing only changes of commit b586d4e312 - Show all commits

@ -58,7 +58,7 @@ public class HelloController {
.readAll() .readAll()
.stream() .stream()
.map(e -> this.helloMapper.mapToGetDto(e)) .map(e -> this.helloMapper.mapToGetDto(e))
.collect(Collectors.toList()); .toList();
} }
@Operation(summary = "deletes a Hello by id") @Operation(summary = "deletes a Hello by id")