Repository: camel
Updated Branches:
  refs/heads/master 03f231e0b -> 841bbf2cc


fixed a CS error


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

Branch: refs/heads/master
Commit: 841bbf2ccc7628879687d448bb9c48ccf2a8c8ff
Parents: 03f231e
Author: Christian Mueller <cmuel...@apache.org>
Authored: Thu Oct 6 08:11:04 2016 +0200
Committer: Christian Mueller <cmuel...@apache.org>
Committed: Thu Oct 6 08:11:04 2016 +0200

----------------------------------------------------------------------
 .../main/java/org/apache/camel/test/junit4/CamelTestSupport.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/841bbf2c/components/camel-test/src/main/java/org/apache/camel/test/junit4/CamelTestSupport.java
----------------------------------------------------------------------
diff --git 
a/components/camel-test/src/main/java/org/apache/camel/test/junit4/CamelTestSupport.java
 
b/components/camel-test/src/main/java/org/apache/camel/test/junit4/CamelTestSupport.java
index d264f86..2c3d00a 100644
--- 
a/components/camel-test/src/main/java/org/apache/camel/test/junit4/CamelTestSupport.java
+++ 
b/components/camel-test/src/main/java/org/apache/camel/test/junit4/CamelTestSupport.java
@@ -79,6 +79,7 @@ import org.slf4j.LoggerFactory;
 public abstract class CamelTestSupport extends TestSupport {
     private static final Logger LOG = 
LoggerFactory.getLogger(CamelTestSupport.class);
     private static final ThreadLocal<Boolean> INIT = new 
ThreadLocal<Boolean>();
+    private static final String ROUTE_COVERAGE_LOG_ENTRY = "Route coverage ({} 
out of {} routes used)";
     private static ThreadLocal<ModelCamelContext> threadCamelContext = new 
ThreadLocal<ModelCamelContext>();
     private static ThreadLocal<ProducerTemplate> threadTemplate = new 
ThreadLocal<ProducerTemplate>();
     private static ThreadLocal<FluentProducerTemplate> threadFluentTemplate = 
new ThreadLocal<FluentProducerTemplate>();
@@ -96,8 +97,6 @@ public abstract class CamelTestSupport extends TestSupport {
     private final Map<String, String> fromEndpoints = new HashMap<String, 
String>();
     private CamelTestWatcher camelTestWatcher = new CamelTestWatcher();
 
-    private static final String ROUTE_COVERAGE_LOG_ENTRY = "Route coverage ({} 
out of {} routes used)";
-
     /**
      * Use the RouteBuilder or not
      * @return <tt>true</tt> then {@link CamelContext} will be auto started,

Reply via email to