You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/11/01 11:41:22 UTC

[2/4] camel git commit: Fixed CS. This closes #1240

Fixed CS. This closes #1240


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

Branch: refs/heads/master
Commit: 23fb42a9e22a4e3dd4adc7dbafa2080f919a3acf
Parents: 0eb700a
Author: Claus Ibsen <da...@apache.org>
Authored: Tue Nov 1 12:40:40 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Nov 1 12:40:40 2016 +0100

----------------------------------------------------------------------
 .../cxf/transport/CxfRsCamelTransportTest.java  | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/23fb42a9/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/transport/CxfRsCamelTransportTest.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/transport/CxfRsCamelTransportTest.java b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/transport/CxfRsCamelTransportTest.java
index acf295b..070a490 100644
--- a/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/transport/CxfRsCamelTransportTest.java
+++ b/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/transport/CxfRsCamelTransportTest.java
@@ -5,9 +5,9 @@
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
  * the License.  You may obtain a copy of the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -16,18 +16,18 @@
  */
 package org.apache.camel.component.cxf.transport;
 
-import org.apache.camel.component.mock.MockEndpoint;
-import org.apache.camel.test.spring.CamelSpringTestSupport;
-import org.junit.Test;
-import org.springframework.context.support.AbstractApplicationContext;
-import org.springframework.context.support.ClassPathXmlApplicationContext;
-
 import javax.ws.rs.Consumes;
 import javax.ws.rs.GET;
 import javax.ws.rs.Path;
 import javax.ws.rs.PathParam;
 import javax.ws.rs.Produces;
 
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.spring.CamelSpringTestSupport;
+import org.junit.Test;
+import org.springframework.context.support.AbstractApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
 public class CxfRsCamelTransportTest extends CamelSpringTestSupport {
 
     @Override
@@ -46,6 +46,7 @@ public class CxfRsCamelTransportTest extends CamelSpringTestSupport {
 
     @Path("/greeting")
     public interface GreetingResource {
+
         @GET
         @Path("/hello/{name}")
         @Consumes("text/plain")
@@ -55,6 +56,7 @@ public class CxfRsCamelTransportTest extends CamelSpringTestSupport {
 
     @Path("/greeting")
     public static class GreetingResourceBean implements GreetingResource {
+
         @GET
         @Path("/hello/{name}")
         @Consumes("text/plain")