Repository: camel
Updated Branches:
  refs/heads/master a40035502 -> 799f098d9


Fixed CS


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

Branch: refs/heads/master
Commit: 799f098d92e54ffee628139959c71072a7f23746
Parents: b70b906
Author: Andrea Cosentino <anco...@gmail.com>
Authored: Tue Jun 14 10:31:54 2016 +0200
Committer: Andrea Cosentino <anco...@gmail.com>
Committed: Tue Jun 14 10:32:10 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/799f098d/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/799f098d/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

Reply via email to