Skip to content

Commit

Permalink
Removed Unused call
Browse files Browse the repository at this point in the history
  • Loading branch information
kpartlow committed Feb 11, 2024
1 parent f7542be commit cb3d04a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static LocalTime toLocalTime(Object from, Converter converter) {

static ZonedDateTime toZonedDateTime(Object from, Converter converter) {
ZoneId zoneId = converter.getOptions().getZoneId();
return ((LocalDate) from).atStartOfDay(zoneId).withZoneSameInstant(zoneId);
return ((LocalDate) from).atStartOfDay(zoneId);
}

/**
Expand Down

0 comments on commit cb3d04a

Please sign in to comment.