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