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 9431cf8 Fixed CS for Camel-Spring-Integration 9431cf8 is described below commit 9431cf8345c9e58bea17a729ce04d68768c04562 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Sat Jan 26 13:09:07 2019 +0100 Fixed CS for Camel-Spring-Integration --- .../camel/component/spring/integration/SpringIntegrationConsumer.java | 2 +- .../camel/component/spring/integration/SpringIntegrationEndpoint.java | 2 +- .../camel/component/spring/integration/SpringIntegrationProducer.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationConsumer.java b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationConsumer.java index cd561e7..c13ee20 100644 --- a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationConsumer.java +++ b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationConsumer.java @@ -19,8 +19,8 @@ package org.apache.camel.component.spring.integration; import org.apache.camel.Exchange; import org.apache.camel.ExchangePattern; import org.apache.camel.Processor; -import org.apache.camel.support.DefaultConsumer; import org.apache.camel.spring.SpringCamelContext; +import org.apache.camel.support.DefaultConsumer; import org.apache.camel.util.ObjectHelper; import org.apache.camel.util.StringHelper; import org.springframework.integration.support.channel.BeanFactoryChannelResolver; diff --git a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationEndpoint.java b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationEndpoint.java index bac51b5..d6de1a2 100644 --- a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationEndpoint.java +++ b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationEndpoint.java @@ -19,12 +19,12 @@ package org.apache.camel.component.spring.integration; import org.apache.camel.Consumer; import org.apache.camel.Processor; import org.apache.camel.Producer; -import org.apache.camel.support.DefaultEndpoint; import org.apache.camel.spi.Metadata; import org.apache.camel.spi.UriEndpoint; import org.apache.camel.spi.UriParam; import org.apache.camel.spi.UriPath; import org.apache.camel.spring.SpringCamelContext; +import org.apache.camel.support.DefaultEndpoint; import org.springframework.messaging.MessageChannel; /** diff --git a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationProducer.java b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationProducer.java index db16a48..a476988 100644 --- a/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationProducer.java +++ b/components/camel-spring-integration/src/main/java/org/apache/camel/component/spring/integration/SpringIntegrationProducer.java @@ -18,8 +18,8 @@ package org.apache.camel.component.spring.integration; import org.apache.camel.Exchange; import org.apache.camel.Processor; -import org.apache.camel.support.DefaultProducer; import org.apache.camel.spring.SpringCamelContext; +import org.apache.camel.support.DefaultProducer; import org.apache.camel.util.ObjectHelper; import org.apache.camel.util.StringHelper; import org.springframework.integration.channel.DirectChannel;