@@ -544,17 +544,17 @@ private void registerOther(final boolean throwException) {
544
544
register (Path .class , throwException ? new PathConverter () : new PathConverter (null ));
545
545
register (java .sql .Date .class , throwException ? new SqlDateConverter () : new SqlDateConverter (null ));
546
546
register (java .sql .Time .class , throwException ? new SqlTimeConverter () : new SqlTimeConverter (null ));
547
- register (Timestamp .class , throwException ? new SqlTimestampConverter () : new SqlTimestampConverter (null ));
547
+ register (Timestamp .class , throwException ? new SqlTimestampConverter () : new SqlTimestampConverter (null ));
548
548
register (URL .class , throwException ? new URLConverter () : new URLConverter (null ));
549
549
register (URI .class , throwException ? new URIConverter () : new URIConverter (null ));
550
550
register (UUID .class , throwException ? new UUIDConverter () : new UUIDConverter (null ));
551
551
register (LocalDate .class , throwException ? new LocalDateConverter () : new LocalDateConverter (null ));
552
- register (LocalDateTime .class , throwException ? new LocalDateTimeConverter () : new LocalDateTimeConverter (null ));
552
+ register (LocalDateTime .class , throwException ? new LocalDateTimeConverter () : new LocalDateTimeConverter (null ));
553
553
register (LocalTime .class , throwException ? new LocalTimeConverter () : new LocalTimeConverter (null ));
554
554
register (Locale .class , throwException ? new LocaleConverter () : new LocaleConverter (null ));
555
- register (OffsetDateTime .class , throwException ? new OffsetDateTimeConverter () :new OffsetDateTimeConverter (null ));
555
+ register (OffsetDateTime .class ,throwException ? new OffsetDateTimeConverter ():new OffsetDateTimeConverter (null ));
556
556
register (OffsetTime .class , throwException ? new OffsetTimeConverter () : new OffsetTimeConverter (null ));
557
- register (ZonedDateTime .class , throwException ? new ZonedDateTimeConverter () : new ZonedDateTimeConverter (null ));
557
+ register (ZonedDateTime .class , throwException ? new ZonedDateTimeConverter () : new ZonedDateTimeConverter (null ));
558
558
register (Duration .class , throwException ? new DurationConverter () : new DurationConverter (null ));
559
559
register (MonthDay .class , throwException ? new MonthDayConverter () : new MonthDayConverter (null ));
560
560
register (Pattern .class , throwException ? new PatternConverter () : new PatternConverter (null ));
0 commit comments