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
commit e17a37f5ab8e3b4c36826b9a5115d8ba49304caa Author: Claus Ibsen <[email protected]> AuthorDate: Sun Aug 24 09:56:22 2025 +0200 Regen --- .../apache/camel/model/dataformat/GroovyXmlDataFormat.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/GroovyXmlDataFormat.java b/core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/GroovyXmlDataFormat.java index 448c3fc8d17..d995129a037 100644 --- a/core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/GroovyXmlDataFormat.java +++ b/core/camel-core-model/src/main/java/org/apache/camel/model/dataformat/GroovyXmlDataFormat.java @@ -62,8 +62,8 @@ public class GroovyXmlDataFormat extends DataFormatDefinition { } /** - * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will - * be mapped to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. + * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will be mapped to an + * XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. */ public void setAttributeMapping(String attributeMapping) { this.attributeMapping = attributeMapping; @@ -80,8 +80,8 @@ public class GroovyXmlDataFormat extends DataFormatDefinition { private String attributeMapping; /** - * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will - * be mapped to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. + * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will be mapped + * to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. */ public Builder attributeMapping(String attributeMapping) { this.attributeMapping = attributeMapping; @@ -89,8 +89,8 @@ public class GroovyXmlDataFormat extends DataFormatDefinition { } /** - * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will - * be mapped to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. + * To turn on or off attribute mapping. When enabled then keys that start with _ or @ character will be mapped + * to an XML attribute, and vise versa. This rule is what Jackson and other XML or JSon libraries uses. */ public Builder attributeMapping(boolean attributeMapping) { this.attributeMapping = Boolean.toString(attributeMapping);
