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 fc73f23 commit acd7b1bCopy full SHA for acd7b1b
lesson_26/api/java/api_app/src/main/java/com/codedifferently/lesson26/web/MediaItemsController.java
@@ -46,4 +46,5 @@ public ResponseEntity<MediaItemResponse> getItemById(@PathVariable("id") UUID id
46
Optional<MediaItem> matchedItem =
47
items.stream().filter(item -> item.getId().equals(id)).findFirst();
48
System.out.println("items");
49
+ // System.out.println(items);
50
}
0 commit comments