Skip to content
Snippets Groups Projects
Commit d99d8c89 authored by Benedikt Elser's avatar Benedikt Elser
Browse files

More readable

parent 2de49790
No related branches found
No related tags found
No related merge requests found
......@@ -124,8 +124,8 @@ public class BootController {
@Operation(summary = "List all boats", description = "Mit dieser Methode können Sie die Liste von im System integrierten Booten laden.")
@RequestMapping(value="/", method=RequestMethod.GET)
@ResponseBody
public ResponseEntity<List<Boot>> rest_list() {
return ResponseEntity.ok(bootService.findAll());
public List<Boot> rest_list() {
return bootService.findAll();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment