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/6d68dac3 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/6d68dac3 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/6d68dac3 Branch: refs/heads/camel-2.18.x Commit: 6d68dac3dd2d6c99d511e1bf2ab93c280800dbd3 Parents: 96b0494 Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Nov 1 12:40:40 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Nov 1 12:41:12 2016 +0100 ---------------------------------------------------------------------- .../cxf/transport/CxfRsCamelTransportTest.java | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/6d68dac3/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")