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 c5df45c commit d9295edCopy full SHA for d9295ed
src/main/java/com/sergiofreire/xray/tutorials/springboot/boundary/UserRestController.java
@@ -39,9 +39,7 @@ public ResponseEntity<User> getCarById(@PathVariable(value = "id") Long id)
39
40
@GetMapping(path="/users" )
41
public List<User> getAllUsers() {
42
- // return userService.getAllUsers();
43
- // bug on purpose ...
44
- return null;
+ return userService.getAllUsers();
45
}
46
47
@DeleteMapping("/users/{id}")
0 commit comments