Skip to content

Commit

Permalink
Fix raw types warn in JmsOutGatewayParserTests
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Aug 17, 2022
1 parent 20cebfc commit abce38c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.springframework.expression.Expression;
import org.springframework.integration.core.MessagingTemplate;
import org.springframework.integration.handler.ExpressionEvaluatingMessageProcessor;
import org.springframework.integration.handler.MessageProcessor;
import org.springframework.integration.handler.advice.AbstractRequestHandlerAdvice;
import org.springframework.integration.history.MessageHistory;
import org.springframework.integration.jms.ActiveMQMultiContextTests;
Expand Down Expand Up @@ -131,7 +132,7 @@ public void gatewayWithDestName() {
public void gatewayWithDestBeanRefExpression() {
try (var context = new ClassPathXmlApplicationContext("jmsOutboundGatewayReplyDestOptions.xml", getClass())) {
var endpoint = context.getBean("jmsGatewayDestExpressionBeanRef");
var processor =
MessageProcessor<?> processor =
TestUtils.getPropertyValue(endpoint, "handler.replyDestinationExpressionProcessor",
ExpressionEvaluatingMessageProcessor.class);
var expression = TestUtils.getPropertyValue(endpoint,
Expand Down

0 comments on commit abce38c

Please sign in to comment.