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 92eb0f8 commit a4623ddCopy full SHA for a4623dd
Chapter02/BONUS_1_SpringAndJavaRecords/src/main/java/modern/challenge/service/BookstoreService.java
@@ -16,12 +16,12 @@ public List<Author> fetchAuthors() {
16
new Book("History of a day", "JN-001"),
17
new Book("Prague history", "JN-002")
18
)),
19
- new Author("Mark Janel", "Horror", List.of(
20
- new Book("Carrie", "MJ-001"),
21
- new Book("House of pain", "MJ-002")
22
- )
+ new Author("Mark Janel", "Horror", List.of(
+ new Book("Carrie", "MJ-001"),
+ new Book("House of pain", "MJ-002")
+ )
23
));
24
-
+
25
return authors;
26
}
27
0 commit comments