You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2014/06/26 01:31:27 UTC

git commit: [Minor] Fix CS errors in camel-http4

Repository: camel
Updated Branches:
  refs/heads/master 8aaf049a9 -> de4312f43


[Minor] Fix CS errors in camel-http4

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/de4312f4
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/de4312f4
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/de4312f4

Branch: refs/heads/master
Commit: de4312f434b9aaeeb2dd033b9d41083045581ef3
Parents: 8aaf049
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Wed Jun 25 19:30:26 2014 -0400
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Wed Jun 25 19:30:26 2014 -0400

----------------------------------------------------------------------
 .../http4/HttpComponentConfigurationAndDocumentationTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/de4312f4/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpComponentConfigurationAndDocumentationTest.java
----------------------------------------------------------------------
diff --git a/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpComponentConfigurationAndDocumentationTest.java b/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpComponentConfigurationAndDocumentationTest.java
index 150bf95..1a37183 100644
--- a/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpComponentConfigurationAndDocumentationTest.java
+++ b/components/camel-http4/src/test/java/org/apache/camel/component/http4/HttpComponentConfigurationAndDocumentationTest.java
@@ -33,8 +33,8 @@ public class HttpComponentConfigurationAndDocumentationTest extends CamelTestSup
     @Test
     public void testComponentConfiguration() throws Exception {
         HttpComponent comp = context.getComponent("http4", HttpComponent.class);
-        EndpointConfiguration conf = comp.createConfiguration("http4://www.google.com?proxyAuthHost=myproxy&" +
-                "proxyAuthPort=1234&chunked=false");
+        EndpointConfiguration conf = comp.createConfiguration("http4://www.google.com?proxyAuthHost=myproxy&"
+                + "proxyAuthPort=1234&chunked=false");
 
         assertEquals("myproxy", conf.getParameter("proxyAuthHost"));
         assertEquals("false", conf.getParameter("chunked"));