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

Commit 92b3452

Browse files
refactor: move GraphQLExtendedScalarsInitializer to separate subfolder
it is not Web Servlet implementation specific
1 parent 92591c8 commit 92b3452

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graphql.kickstart.autoconfigure.web.servlet;
1+
package graphql.kickstart.autoconfigure.scalars;
22

33
import graphql.scalars.ExtendedScalars;
44
import graphql.schema.GraphQLScalarType;

graphql-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.springframework.context.ApplicationContextInitializer=\
2-
graphql.kickstart.autoconfigure.web.servlet.GraphQLExtendedScalarsInitializer
2+
graphql.kickstart.autoconfigure.scalars.GraphQLExtendedScalarsInitializer
33
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
44
graphql.kickstart.autoconfigure.web.servlet.GraphQLWebAutoConfiguration,\
55
graphql.kickstart.autoconfigure.web.servlet.GraphQLWebSecurityAutoConfiguration,\

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/extendedscalars/ExtendedScalarsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import static org.assertj.core.api.Assertions.assertThat;
44
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
55

6-
import graphql.kickstart.autoconfigure.web.servlet.GraphQLExtendedScalarsInitializer;
6+
import graphql.kickstart.autoconfigure.scalars.GraphQLExtendedScalarsInitializer;
77
import graphql.scalars.ExtendedScalars;
88
import graphql.schema.GraphQLScalarType;
99
import java.util.AbstractMap;

0 commit comments

Comments
 (0)