Skip to content

Commit bf55b66

Browse files
committed
Increase coverage
1 parent 943cf48 commit bf55b66

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,18 @@
99
import java.util.Collections;
1010
import java.util.List;
1111
import java.util.Optional;
12-
import lombok.EqualsAndHashCode;
1312
import lombok.Getter;
1413

15-
@EqualsAndHashCode
1614
public class GraphQLResponse {
1715

1816
public static final String ERRORS_FIELD = "errors";
1917

2018
private final JsonNode data;
2119
@Getter
2220
private final List<GraphQLError> errors;
23-
private final String rawResponse;
2421
private final ObjectMapper objectMapper;
2522

2623
GraphQLResponse(String rawResponse, ObjectMapper objectMapper) {
27-
this.rawResponse = rawResponse;
2824
this.objectMapper = objectMapper;
2925

3026
JsonNode tree = readTree(rawResponse);

0 commit comments

Comments
 (0)