This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch lang4
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 404164a63928c681148d73a7f9c08743af9af914
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Sat Feb 3 12:06:24 2024 +0100

    CAMEL-20378: Languages should be thread-safe and be configured only via 
properties array, all in the same way.
---
 .../org/apache/camel/builder/ExpressionClauseSupport.java  | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/core/camel-core-model/src/main/java/org/apache/camel/builder/ExpressionClauseSupport.java
 
b/core/camel-core-model/src/main/java/org/apache/camel/builder/ExpressionClauseSupport.java
index c6be8806cf6..5acd7b97e3e 100644
--- 
a/core/camel-core-model/src/main/java/org/apache/camel/builder/ExpressionClauseSupport.java
+++ 
b/core/camel-core-model/src/main/java/org/apache/camel/builder/ExpressionClauseSupport.java
@@ -458,9 +458,9 @@ public class ExpressionClauseSupport<T> implements 
ExpressionFactoryAware, Predi
     /**
      * Evaluates <a href="http://camel.apache.org/jq.html";>JQ expression</a>
      *
-     * @param  text                 the expression to be evaluated
-     * @param  headerName           the name of the header to apply the 
expression to
-     * @return                      the builder to continue processing the DSL
+     * @param  text       the expression to be evaluated
+     * @param  headerName the name of the header to apply the expression to
+     * @return            the builder to continue processing the DSL
      */
     public T jq(String text, String headerName) {
         JqExpression exp = new JqExpression(text);
@@ -486,10 +486,10 @@ public class ExpressionClauseSupport<T> implements 
ExpressionFactoryAware, Predi
     /**
      * Evaluates <a href="http://camel.apache.org/jq.html";>JQ expression</a>
      *
-     * @param  text                 the expression to be evaluated
-     * @param  resultType           the return type expected by the expression
-     * @param  headerName           the name of the header or the property to 
apply the expression to
-     * @return                      the builder to continue processing the DSL
+     * @param  text       the expression to be evaluated
+     * @param  resultType the return type expected by the expression
+     * @param  headerName the name of the header or the property to apply the 
expression to
+     * @return            the builder to continue processing the DSL
      */
     public T jq(String text, Class<?> resultType, String headerName) {
         JqExpression exp = new JqExpression(text);

Reply via email to