File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/main/java/graphql/scalars/datetime Expand file tree Collapse file tree 1 file changed +4
-2
lines changed 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