Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 1b571e3

Browse files
committed
Fix javadoc and syntax errors.
1 parent 2a1d8ac commit 1b571e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

graphql-spring-boot-test/src/main/java/com/graphql/spring/boot/test/GraphQLTestTemplate.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ private String loadResource(Resource resource) throws IOException {
5353
/**
5454
* Add an HTTP header that will be sent with each request this sends.
5555
*
56-
* @param String Name (key) of HTTP header to add.
57-
* @param String Value of HTTP header to add.
56+
* @param name Name (key) of HTTP header to add.
57+
* @param value Value of HTTP header to add.
5858
*/
5959
public void addHeader(String name, String value) {
6060
headers.add(name, value);
@@ -63,10 +63,10 @@ public void addHeader(String name, String value) {
6363
/**
6464
* Replace any associated HTTP headers with the provided headers.
6565
*
66-
* @param HttpHeaders Headers to use.
66+
* @param newHeaders Headers to use.
6767
*/
6868
public void setHeaders(HttpHeaders newHeaders) {
69-
headers = newHeaders
69+
headers = newHeaders;
7070
}
7171

7272
/**

0 commit comments

Comments
 (0)