From 54c70c568d7d11aa05c1c1f6ed2d428ce009f001 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Fri, 30 Nov 2018 16:38:32 +0100 Subject: [PATCH] GH-1543 Removed 'processor' dependency from AMCB Removed autowired dependency from AbstractMessageChannelBinder. It was lingering from the previous effort of extending Processor apps with functions. Basically with regard to the extending the app effort functions will be composed at the end of the existing processor (if any). Resolves #1543 --- .../cloud/stream/binder/AbstractMessageChannelBinder.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/spring-cloud-stream/src/main/java/org/springframework/cloud/stream/binder/AbstractMessageChannelBinder.java b/spring-cloud-stream/src/main/java/org/springframework/cloud/stream/binder/AbstractMessageChannelBinder.java index 73bad4583..fca8bbd82 100644 --- a/spring-cloud-stream/src/main/java/org/springframework/cloud/stream/binder/AbstractMessageChannelBinder.java +++ b/spring-cloud-stream/src/main/java/org/springframework/cloud/stream/binder/AbstractMessageChannelBinder.java @@ -35,7 +35,6 @@ import org.springframework.beans.factory.support.DefaultSingletonBeanRegistry; import org.springframework.cloud.stream.config.ListenerContainerCustomizer; import org.springframework.cloud.stream.function.IntegrationFlowFunctionSupport; import org.springframework.cloud.stream.function.StreamFunctionProperties; -import org.springframework.cloud.stream.messaging.Processor; import org.springframework.cloud.stream.provisioning.ConsumerDestination; import org.springframework.cloud.stream.provisioning.ProducerDestination; import org.springframework.cloud.stream.provisioning.ProvisioningException; @@ -114,9 +113,6 @@ public abstract class AbstractMessageChannelBinder