This is an automated email from the ASF dual-hosted git repository. pascalschumacher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2c962789cfe0ae094d3cfbe55461403a5a761e0b Author: Pascal Schumacher <pascalschumac...@gmx.net> AuthorDate: Sun Sep 27 17:42:20 2020 +0200 AbstractApiConfiguration: Add missing space in UriParam description. --- .../org/apache/camel/support/component/AbstractApiConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java b/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java index d63fc0c..3a3728b 100644 --- a/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java +++ b/core/camel-support/src/main/java/org/apache/camel/support/component/AbstractApiConfiguration.java @@ -22,7 +22,7 @@ public class AbstractApiConfiguration { @UriParam(label = "consumer", defaultValue = "true", description = "When consumer return an array or collection this will generate one exchange per element, and their routes will be executed once for each exchange." - + "Set this value to false to use a single exchange for the entire list or array.") + + " Set this value to false to use a single exchange for the entire list or array.") private boolean splitResult; public boolean isSplitResult() {