Skip to content

Commit b087fdd

Browse files
committed
Fix CorrelationHandlerTests compilation warnings
https://build.spring.io/browse/INT-MASTER-JOB1-1050
1 parent c7aa618 commit b087fdd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-integration-core/src/test/java/org/springframework/integration/dsl/correlation/CorrelationHandlerTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,12 @@ public TestSplitterPojo testSplitterData() {
176176
}
177177

178178
@Bean
179+
@SuppressWarnings("rawtypes")
179180
public IntegrationFlow splitResequenceFlow() {
180181
return f -> f.enrichHeaders(s -> s.header("FOO", "BAR"))
181182
.split("testSplitterData", "buildList", c -> c.applySequence(false))
182183
.channel(MessageChannels.executor(taskExecutor()))
183-
.split(Message.class, Message<Object>::getPayload, c -> c.applySequence(false))
184+
.split(Message.class, Message::getPayload, c -> c.applySequence(false))
184185
.channel(MessageChannels.executor(taskExecutor()))
185186
.split(s -> s
186187
.applySequence(false)

0 commit comments

Comments
 (0)