Skip to content

Commit 36ef673

Browse files
committed
Fix javadoc - lombok builder incompatibility
1 parent 72b6bbe commit 36ef673

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

graphql-webclient/src/main/java/graphql/kickstart/spring/webclient/boot/GraphQLRequestBody.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,12 @@ class GraphQLRequestBody {
1111
Object variables;
1212
String operationName;
1313

14+
static GraphQLRequestBodyBuilder builder() {
15+
return new GraphQLRequestBodyBuilder();
16+
}
17+
18+
static class GraphQLRequestBodyBuilder {
19+
// added this partial builder to let Javadoc play nice with Lombok, see https://stackoverflow.com/a/58809436/12507062
20+
}
21+
1422
}

0 commit comments

Comments
 (0)