Skip to content

Commit abce38c

Browse files
committed
Fix raw types warn in JmsOutGatewayParserTests
1 parent 20cebfc commit abce38c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-integration-jms/src/test/java/org/springframework/integration/jms/config/JmsOutboundGatewayParserTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import org.springframework.expression.Expression;
3131
import org.springframework.integration.core.MessagingTemplate;
3232
import org.springframework.integration.handler.ExpressionEvaluatingMessageProcessor;
33+
import org.springframework.integration.handler.MessageProcessor;
3334
import org.springframework.integration.handler.advice.AbstractRequestHandlerAdvice;
3435
import org.springframework.integration.history.MessageHistory;
3536
import org.springframework.integration.jms.ActiveMQMultiContextTests;
@@ -131,7 +132,7 @@ public void gatewayWithDestName() {
131132
public void gatewayWithDestBeanRefExpression() {
132133
try (var context = new ClassPathXmlApplicationContext("jmsOutboundGatewayReplyDestOptions.xml", getClass())) {
133134
var endpoint = context.getBean("jmsGatewayDestExpressionBeanRef");
134-
var processor =
135+
MessageProcessor<?> processor =
135136
TestUtils.getPropertyValue(endpoint, "handler.replyDestinationExpressionProcessor",
136137
ExpressionEvaluatingMessageProcessor.class);
137138
var expression = TestUtils.getPropertyValue(endpoint,

0 commit comments

Comments
 (0)