Skip to content

Commit

Permalink
Remove redundant brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
solth committed Oct 26, 2024
1 parent 8f2015b commit 137a9d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ public static Date parseDateFromFormattedString(String date) {
Instant instant = localDate.toInstant(ZoneOffset.UTC);
return Date.from(instant);
} catch (DateTimeParseException e) {
logger.info("invalid date format ('{}') for date string: '{}'", DEFAULT_DATE_FORMAT, date);
logger.info("invalid date format '{}' for date string: '{}'", DEFAULT_DATE_FORMAT, date);
return null;
}
}
Expand Down

0 comments on commit 137a9d1

Please sign in to comment.