Repository: camel Updated Branches: refs/heads/master a2c1b7126 -> cac126393
Fixed the CS error in camel-jetty-common Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/cac12639 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/cac12639 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/cac12639 Branch: refs/heads/master Commit: cac1263936e0077534537f08dfe4674d591aa9be Parents: 29ca57c Author: Willem Jiang <willem.ji...@gmail.com> Authored: Mon Jul 6 10:17:50 2015 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Mon Jul 6 10:18:06 2015 +0800 ---------------------------------------------------------------------- .../java/org/apache/camel/component/jetty/JettyHttpComponent.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/cac12639/components/camel-jetty-common/src/main/java/org/apache/camel/component/jetty/JettyHttpComponent.java ---------------------------------------------------------------------- diff --git a/components/camel-jetty-common/src/main/java/org/apache/camel/component/jetty/JettyHttpComponent.java b/components/camel-jetty-common/src/main/java/org/apache/camel/component/jetty/JettyHttpComponent.java index 95b1185..f98cee5 100644 --- a/components/camel-jetty-common/src/main/java/org/apache/camel/component/jetty/JettyHttpComponent.java +++ b/components/camel-jetty-common/src/main/java/org/apache/camel/component/jetty/JettyHttpComponent.java @@ -482,7 +482,8 @@ public abstract class JettyHttpComponent extends HttpComponent implements RestCo /** * The key password, which is used to access the certificate's key entry in the keystore (this is the same password that is supplied to the keystore command's -keypass option). */ - @Metadata(description = "The key password, which is used to access the certificate's key entry in the keystore (this is the same password that is supplied to the keystore command's -keypass option).") + @Metadata(description = "The key password, which is used to access the certificate's key entry in the keystore " + + "(this is the same password that is supplied to the keystore command's -keypass option).") public void setSslKeyPassword(String sslKeyPassword) { this.sslKeyPassword = sslKeyPassword; }