JiriOndrusek commented on code in PR #7247: URL: https://github.com/apache/camel-quarkus/pull/7247#discussion_r2039281508
########## integration-tests/beanio/src/main/java/org/apache/camel/quarkus/component/beanio/it/BeanioResource.java: ########## @@ -50,7 +51,11 @@ @Path("/beanio") public class BeanioResource { - public static final SimpleDateFormat FORMATTER = new SimpleDateFormat("yyyy-MM-dd"); + public static SimpleDateFormat FORMATTER = new SimpleDateFormat("yyyy-MM-dd"); + + static { + FORMATTER.setTimeZone(TimeZone.getTimeZone("CET")); + } Review Comment: I kept the date `11012009` (just to keep all 3 dates in the same daylight saving time period). I removed the timezone setting and kept property runtime initialized. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org