This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 03c24ccd9c34c8fb648233b455a639093e34ef5e Author: aldettinger <aldettin...@gmail.com> AuthorDate: Sat Mar 14 10:20:23 2020 +0100 Fixed CS --- .../main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java b/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java index 73e1b24..7efad90 100644 --- a/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java +++ b/components/camel-sql/src/main/java/org/apache/camel/component/sql/DefaultSqlEndpoint.java @@ -109,7 +109,8 @@ public abstract class DefaultSqlEndpoint extends DefaultPollingEndpoint { + " in the message body, any existing content in the message body is discarded. If outputHeader is set, the value is used as the name of the header" + " to store the query result and the original message body is preserved.") private String outputHeader; - @UriParam(label = "producer", description = "Whether to use the message body as the SQL and then headers for parameters. If this option is enabled then the SQL in the uri is not used. Note that query parameters in the message body are represented by a question mark instead of a <tt>#</tt> symbol.") + @UriParam(label = "producer", description = "Whether to use the message body as the SQL and then headers for parameters. If this option is enabled then the SQL in the uri is not used." + + "Note that query parameters in the message body are represented by a question mark instead of a <tt>#</tt> symbol.") private boolean useMessageBodyForSql; @UriParam(label = "advanced", defaultValue = "#", description = "Specifies a character that will be replaced to ? in SQL query." + " Notice, that it is simple String.replaceAll() operation and no SQL parsing is involved (quoted strings will also change).")