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:40 UTC

[5/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/b8c23d17
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b8c23d17
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b8c23d17

Branch: refs/heads/camel-2.19.x
Commit: b8c23d1712f5ddd184002d4e33063648f50ac656
Parents: 83b102b
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:08:59 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/b8c23d17/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 cddfaea..5e5cbab 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();
         }
     }