Skip to content

Commit 4ce9ca7

Browse files
committed
Polishing
1 parent 3c97533 commit 4ce9ca7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: spring-graphql-docs/src/main/java/org/springframework/graphql/docs/controllers/schemamapping/localcontext/LocalContextBookController.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,13 @@ private List<Book> fetchSimilarBooks(Book book) {
7070
return List.of();
7171
}
7272

73-
record BookAndAuthor(Book book, Author author) {}
73+
record BookAndAuthor(Book book, Author author) {
74+
}
7475

75-
record Book(long id, String title, long authorId) {}
76+
record Book(long id, String title, long authorId) {
77+
}
7678

77-
record Author(long id, String name) {}
79+
record Author(long id, String name) {
80+
}
7881

7982
}

0 commit comments

Comments
 (0)