This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 1f32ef3 Regen 1f32ef3 is described below commit 1f32ef34fd39fcfbc28d42ac1425c8e8854df8b7 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Sep 27 11:23:50 2021 +0200 Regen --- core/camel-api/src/main/java/org/apache/camel/Converter.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/camel-api/src/main/java/org/apache/camel/Converter.java b/core/camel-api/src/main/java/org/apache/camel/Converter.java index 5c88093..00c7b43 100644 --- a/core/camel-api/src/main/java/org/apache/camel/Converter.java +++ b/core/camel-api/src/main/java/org/apache/camel/Converter.java @@ -40,13 +40,13 @@ public @interface Converter { /** * Whether this converter is a regular converter or a fallback converter. * - * <b>Important</b>: Fallback type converters is not recommended being used by Camel end users, - * but are used by Camel internally and for some special Camel components. + * <b>Important</b>: Fallback type converters is not recommended being used by Camel end users, but are used by + * Camel internally and for some special Camel components. * * The difference between a regular converter and a fallback-converter is that the fallback is resolved at last if - * no regular converter could be found. The method signature is scoped to be generic to allow handling a - * broader range of types trying to be converted. The fallback converter can just return <tt>null</tt> if it can not - * handle the types to convert from/to. + * no regular converter could be found. The method signature is scoped to be generic to allow handling a broader + * range of types trying to be converted. The fallback converter can just return <tt>null</tt> if it can not handle + * the types to convert from/to. */ boolean fallback() default false;