This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new b1a3a8b Fixed CS b1a3a8b is described below commit b1a3a8bc551ad4ed9d6c0f6947ebc9f4a4fbfc52 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Sun Sep 20 16:56:42 2020 +0200 Fixed CS --- .../org/apache/camel/support/component/AbstractApiConfiguration.java | 3 ++- 1 file changed, 2 insertions(+), 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 e0d120d..d63fc0c 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 @@ -21,7 +21,8 @@ import org.apache.camel.spi.UriParam; 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.") + 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.") private boolean splitResult; public boolean isSplitResult() {