You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/05/23 08:13:50 UTC

[camel] branch master updated: Fixed CS for Camel-base

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 337103f  Fixed CS for Camel-base
337103f is described below

commit 337103f4b42b3ef2d15a4eabfe6b73ad24a6431c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 23 10:13:28 2019 +0200

    Fixed CS for Camel-base
---
 .../main/java/org/apache/camel/impl/engine/DefaultConsumerCache.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultConsumerCache.java b/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultConsumerCache.java
index d266d94..7006bc8 100644
--- a/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultConsumerCache.java
+++ b/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultConsumerCache.java
@@ -16,6 +16,8 @@
  */
 package org.apache.camel.impl.engine;
 
+import java.util.concurrent.RejectedExecutionException;
+
 import org.apache.camel.CamelContext;
 import org.apache.camel.Endpoint;
 import org.apache.camel.Exchange;
@@ -27,8 +29,6 @@ import org.apache.camel.support.CamelContextHelper;
 import org.apache.camel.support.service.ServiceHelper;
 import org.apache.camel.support.service.ServiceSupport;
 
-import java.util.concurrent.RejectedExecutionException;
-
 /**
  * Cache containing created {@link org.apache.camel.Consumer}.
  */