From b087fddd4d69dd95fae3fe5c01bb624cde9318ad Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 22 May 2018 14:41:46 -0400 Subject: [PATCH] Fix CorrelationHandlerTests compilation warnings https://build.spring.io/browse/INT-MASTER-JOB1-1050 --- .../integration/dsl/correlation/CorrelationHandlerTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-integration-core/src/test/java/org/springframework/integration/dsl/correlation/CorrelationHandlerTests.java b/spring-integration-core/src/test/java/org/springframework/integration/dsl/correlation/CorrelationHandlerTests.java index 4cc17ca922..d227a3bd59 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/dsl/correlation/CorrelationHandlerTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/dsl/correlation/CorrelationHandlerTests.java @@ -176,11 +176,12 @@ public class CorrelationHandlerTests { } @Bean + @SuppressWarnings("rawtypes") public IntegrationFlow splitResequenceFlow() { return f -> f.enrichHeaders(s -> s.header("FOO", "BAR")) .split("testSplitterData", "buildList", c -> c.applySequence(false)) .channel(MessageChannels.executor(taskExecutor())) - .split(Message.class, Message::getPayload, c -> c.applySequence(false)) + .split(Message.class, Message::getPayload, c -> c.applySequence(false)) .channel(MessageChannels.executor(taskExecutor())) .split(s -> s .applySequence(false)