This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.14.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 518ab5bc8ed884c9fb7afca5d968d0a078bc3e62 Author: Claus Ibsen <[email protected]> AuthorDate: Tue May 17 20:25:26 2022 +0200 CAMEL-18119 - Allow Simple expressions to render any Object that can be converted to Date (#7627) --- .../org/apache/camel/language/simple/myconverter/MyCustomDate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/language/simple/myconverter/MyCustomDate.java b/core/camel-core/src/test/java/org/apache/camel/language/simple/myconverter/MyCustomDate.java index 614bf762153..ce2b205d54a 100644 --- a/core/camel-core/src/test/java/org/apache/camel/language/simple/myconverter/MyCustomDate.java +++ b/core/camel-core/src/test/java/org/apache/camel/language/simple/myconverter/MyCustomDate.java @@ -17,8 +17,8 @@ package org.apache.camel.language.simple.myconverter; /** - * This custom date object allows to check that Simple expressions can call - * custom type converters when needing real java.util.Date instances + * This custom date object allows to check that Simple expressions can call custom type converters when needing real + * java.util.Date instances */ public final class MyCustomDate {
