Skip to content

Commit b0c7a07

Browse files
committed
Undid minor formatting to adhere to line length limit.
1 parent 77162f5 commit b0c7a07

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -544,17 +544,17 @@ private void registerOther(final boolean throwException) {
544544
register(Path.class, throwException ? new PathConverter() : new PathConverter(null));
545545
register(java.sql.Date.class, throwException ? new SqlDateConverter() : new SqlDateConverter(null));
546546
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));
548548
register(URL.class, throwException ? new URLConverter() : new URLConverter(null));
549549
register(URI.class, throwException ? new URIConverter() : new URIConverter(null));
550550
register(UUID.class, throwException ? new UUIDConverter() : new UUIDConverter(null));
551551
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));
553553
register(LocalTime.class, throwException ? new LocalTimeConverter() : new LocalTimeConverter(null));
554554
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));
556556
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));
558558
register(Duration.class, throwException ? new DurationConverter() : new DurationConverter(null));
559559
register(MonthDay.class, throwException ? new MonthDayConverter() : new MonthDayConverter(null));
560560
register(Pattern.class, throwException ? new PatternConverter() : new PatternConverter(null));

0 commit comments

Comments
 (0)