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 2017/06/29 11:37:43 UTC

[8/9] camel git commit: Fixed CS

Fixed CS


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

Branch: refs/heads/camel-2.18.x
Commit: 044083e6049d68d6238dc5d39a80d0fd17597f79
Parents: abc3087
Author: Claus Ibsen <da...@apache.org>
Authored: Thu Jun 29 12:57:03 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Jun 29 13:31:06 2017 +0200

----------------------------------------------------------------------
 .../apache/camel/test/blueprint/CamelBlueprintTestSupport.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/044083e6/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
----------------------------------------------------------------------
diff --git a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
index 686854c..5d7eaed 100644
--- a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
+++ b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java
@@ -249,9 +249,9 @@ public abstract class CamelBlueprintTestSupport extends CamelTestSupport {
         // start context when we are ready
         log.debug("Starting CamelContext: {}", context.getName());
         if (isUseAdviceWith()) {
-                log.info("Skipping starting CamelContext as isUseAdviceWith is set to true.");
+            log.info("Skipping starting CamelContext as isUseAdviceWith is set to true.");
         } else {
-                context.start();
+            context.start();
         }
     }