Skip to content

Commit

Permalink
issue #1332 addressing PR comments: minor layout fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
wajda committed Jun 4, 2024
1 parent b0d4a52 commit 4184e77
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,14 @@ object DateTimeUtils extends LazyLogging {
if (validOffsets.isEmpty) {
logger.warn("" +
s"DST gap was detected for the input '$s' in the time zone '$tz'. " +
s"Continue with the adjusted datetime '$zdt''")
s"Continue with the adjusted datetime '$zdt'"
)
}
if (validOffsets.length > 1) {
logger.warn("" +
s"DST overlap (${validOffsets.mkString(", ")}) was detected for the input '$s' in the time zone '$tz'. " +
s"Continue with the assumed datetime '$zdt'")
s"Continue with the assumed datetime '$zdt'"
)
}

maybeZoneGeoId.foldLeft(zdt)(_ withZoneSameInstant _)
Expand Down

0 comments on commit 4184e77

Please sign in to comment.