Fixed CS
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/226da678 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/226da678 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/226da678 Branch: refs/heads/camel-2.17.x Commit: 226da678c016edf936d73d39bdcf4e8c0dc161c8 Parents: f9641ff Author: Andrea Cosentino <[email protected]> Authored: Tue Jun 14 10:31:54 2016 +0200 Committer: Andrea Cosentino <[email protected]> Committed: Tue Jun 14 10:33:46 2016 +0200 ---------------------------------------------------------------------- .../jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java | 4 ++-- .../jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/226da678/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java ---------------------------------------------------------------------- diff --git a/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java b/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java index 8b69c09..070aef3 100644 --- a/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java +++ b/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryDisabledTest.java @@ -33,7 +33,7 @@ import org.junit.Test; public class FallbackTypeConverterObjectFactoryDisabledTest extends CamelTestSupport { - @Test(expected=CamelExecutionException.class) + @Test(expected = CamelExecutionException.class) public void testObjectFactoryFalse() throws Exception { Message in = new Message("Hello World"); getMockEndpoint("mock:a").expectedBodiesReceived(in); @@ -45,7 +45,7 @@ public class FallbackTypeConverterObjectFactoryDisabledTest extends CamelTestSup @Override protected RouteBuilder createRouteBuilder() throws Exception { - context.getProperties().put(FallbackTypeConverter.OBJECT_FACTORY, "false"); + context.getProperties().put(FallbackTypeConverter.OBJECT_FACTORY, "false"); return new RouteBuilder(context) { @Override http://git-wip-us.apache.org/repos/asf/camel/blob/226da678/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java ---------------------------------------------------------------------- diff --git a/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java b/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java index be51571..741213a 100644 --- a/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java +++ b/components/camel-jaxb/src/test/java/org/apache/camel/jaxb/FallbackTypeConverterObjectFactoryEnabledTest.java @@ -37,7 +37,7 @@ public class FallbackTypeConverterObjectFactoryEnabledTest extends CamelTestSupp @Override protected RouteBuilder createRouteBuilder() throws Exception { - context.getProperties().put(FallbackTypeConverter.OBJECT_FACTORY, "true"); + context.getProperties().put(FallbackTypeConverter.OBJECT_FACTORY, "true"); return new RouteBuilder(context) { @Override
