File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/main/java/graphql/scalars/datetime Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ repositories {
4141}
4242
4343dependencies {
44- implementation " com.graphql-java:graphql-java:22.3 "
44+ implementation " com.graphql-java:graphql-java:24.1 "
4545
4646 testImplementation " org.spockframework:spock-core:2.3-groovy-3.0"
4747 testImplementation " org.codehaus.groovy:groovy:3.0.24"
Original file line number Diff line number Diff line change 2020import static graphql .scalars .util .Kit .typeName ;
2121import static java .time .format .DateTimeFormatter .ISO_LOCAL_DATE ;
2222import static java .time .temporal .ChronoField .HOUR_OF_DAY ;
23+ import static java .time .temporal .ChronoField .MILLI_OF_SECOND ;
2324import static java .time .temporal .ChronoField .MINUTE_OF_HOUR ;
24- import static java .time .temporal .ChronoField .NANO_OF_SECOND ;
2525import static java .time .temporal .ChronoField .OFFSET_SECONDS ;
2626import static java .time .temporal .ChronoField .SECOND_OF_MINUTE ;
2727
@@ -33,7 +33,9 @@ public final class DateTimeScalar {
3333
3434 public static final GraphQLScalarType INSTANCE ;
3535
36- private DateTimeScalar () {}
36+ private DateTimeScalar () {
37+ }
38+
3739 private static final DateTimeFormatter customOutputFormatter = getCustomDateTimeFormatter ();
3840
3941 static {
You can’t perform that action at this time.
0 commit comments