Fixed the CS error of camel-sql
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9ac4e742 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9ac4e742 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9ac4e742 Branch: refs/heads/master Commit: 9ac4e742c64540896c87d367556ad6e7fbf529e5 Parents: 07eb9a4 Author: Willem Jiang <willem.ji...@gmail.com> Authored: Mon Nov 10 15:47:02 2014 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Mon Nov 10 21:11:41 2014 +0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/component/sql/SqlEndpoint.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/9ac4e742/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlEndpoint.java b/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlEndpoint.java index 9e0df84..8f47b24 100644 --- a/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlEndpoint.java +++ b/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlEndpoint.java @@ -251,7 +251,8 @@ public class SqlEndpoint extends DefaultPollingEndpoint { * Make the output of consumer or producer to SelectList as List of Map, or SelectOne as single Java object in the following way: * a) If the query has only single column, then that JDBC Column object is returned. (such as SELECT COUNT( * ) FROM PROJECT will return a Long object. * b) If the query has more than one column, then it will return a Map of that result. - * c) If the outputClass is set, then it will convert the query result into an Java bean object by calling all the setters that match the column names. It will assume your class has a default constructor to create instance with. + * c) If the outputClass is set, then it will convert the query result into an Java bean object by calling all the setters that match the column names. + * It will assume your class has a default constructor to create instance with. * d) If the query resulted in more than one rows, it throws an non-unique result exception. */ public void setOutputType(SqlOutputType outputType) {