refactor(HelloController): simplify collection conversion to list
This commit is contained in:
parent
2268c37761
commit
b586d4e312
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||||
|
|
Reference in a new issue