Skip to content

Commit 2838b41

Browse files
committed
Remove redundant ExecutionGraphQlRequest interface declaration
WebGraphQlRequest already implements ExecutionGraphQlRequest through its parent class DefaultExecutionGraphQlRequest, making the explicit interface declaration redundant. Signed-off-by: do.vantrinh <do.vantrinh@moneyforward.co.jp>
1 parent 1a6519d commit 2838b41

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-graphql/src/main/java/org/springframework/graphql/server/WebGraphQlRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
import org.jspecify.annotations.Nullable;
2626

27-
import org.springframework.graphql.ExecutionGraphQlRequest;
2827
import org.springframework.graphql.GraphQlRequest;
2928
import org.springframework.graphql.support.DefaultExecutionGraphQlRequest;
3029
import org.springframework.http.HttpCookie;
@@ -48,7 +47,7 @@
4847
* @author Rossen Stoyanchev
4948
* @since 1.0.0
5049
*/
51-
public class WebGraphQlRequest extends DefaultExecutionGraphQlRequest implements ExecutionGraphQlRequest {
50+
public class WebGraphQlRequest extends DefaultExecutionGraphQlRequest {
5251

5352
private static final MultiValueMap<String, HttpCookie> EMPTY_COOKIES =
5453
CollectionUtils.unmodifiableMultiValueMap(new LinkedMultiValueMap<>());

0 commit comments

Comments
 (0)