Skip to content

Commit a244164

Browse files
committed
Fix unused imports
https://build.spring.io/browse/INT-MASTER-978/ **Cherry-pick to 5.0.x** (cherry picked from commit 4f616e9)
1 parent 4e42aa7 commit a244164

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-integration-test/src/test/java/org/springframework/integration/test/mock/MockMessageHandlerTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
import org.springframework.integration.endpoint.EventDrivenConsumer;
5050
import org.springframework.integration.expression.ValueExpression;
5151
import org.springframework.integration.handler.ExpressionEvaluatingMessageHandler;
52-
import org.springframework.integration.handler.ServiceActivatingHandler;
5352
import org.springframework.integration.support.MessageBuilder;
5453
import org.springframework.integration.test.context.MockIntegrationContext;
5554
import org.springframework.integration.test.context.SpringIntegrationTest;
@@ -292,7 +291,7 @@ public ArgumentCaptor<Message<?>> argumentCaptorForOutputTest() {
292291
@ServiceActivator(inputChannel = "nextChannel")
293292
public MessageHandler handleNextInput() {
294293
return mockMessageHandler(argumentCaptorForOutputTest())
295-
.handleNext(m -> {});
294+
.handleNext(m -> { });
296295
}
297296

298297
}

0 commit comments

Comments
 (0)