Skip to content

Commit 6b5db26

Browse files
committed
modification to trigger a build
1 parent 71b8ce5 commit 6b5db26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/example/RestApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public Iterable<Item> getAll(){
2828
@GetMapping(path = "/{id}")
2929
public ResponseEntity<Item> getById(@PathVariable("id") Long id){
3030

31-
Item item = repository.findById(id).orElse(null);
31+
Item item = repository.findById(id).orElse(null) ;
3232

3333
if(item == null){
3434
return ResponseEntity.notFound().build();

0 commit comments

Comments
 (0)