Skip to content

Commit

Permalink
Merge pull request #95 from kpartlow/master
Browse files Browse the repository at this point in the history
Removed Unused call
  • Loading branch information
jdereg committed Feb 11, 2024
2 parents f7542be + cb3d04a commit ae2c38d
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 ae2c38d

Please sign in to comment.