This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit b8921dee93b07a935d073578369f1f28d1c7a35a Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Jan 26 20:34:19 2026 +0000 (chores): ensure usage of text blocks camel-infinispan-common --- .../camel/component/infinispan/InfinispanConfiguration.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/components/camel-infinispan/camel-infinispan-common/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java b/components/camel-infinispan/camel-infinispan-common/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java index 04050d32d9ec..0a96215cfab6 100644 --- a/components/camel-infinispan/camel-infinispan-common/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java +++ b/components/camel-infinispan/camel-infinispan-common/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java @@ -43,12 +43,13 @@ public abstract class InfinispanConfiguration { private String configurationUri; @UriParam(label = "advanced", - description = "Store the operation result in a header instead of the message body. By default,\n" + - "resultHeader == null and the query result is stored in the message body, any \n" + - "existing content in the message body is discarded. If resultHeader is set, the \n" + - "value is used as the name of the header to store the query result and the original \n" + - "message body is preserved. This value can be overridden by an in message header \n" + - "named: CamelInfinispanOperationResultHeader") + description = """ + Store the operation result in a header instead of the message body. By default, + resultHeader == null and the query result is stored in the message body, any\s + existing content in the message body is discarded. If resultHeader is set, the\s + value is used as the name of the header to store the query result and the original\s + message body is preserved. This value can be overridden by an in message header\s + named: CamelInfinispanOperationResultHeader""") private String resultHeader; @UriParam(label = "advanced", description = "Set a specific remappingFunction to use in a compute operation.")
