INT-1129 modified the argument order for MessagingTemplate send(..) methods so that MessageChannel always comes first - consistent with Destination/destinationName being the first argument in all JmsTemplate send(..) methods
This commit is contained in:
@@ -61,7 +61,7 @@ public class XmppHeaderEnricherParserTests {
|
||||
logger.debug(String.format("%s=%s (class: %s)", h, message.getHeaders().get(h), message.getHeaders().get(h).getClass().toString()));
|
||||
}
|
||||
});
|
||||
messagingTemplate.send(MessageBuilder.withPayload("foo").build(), input);
|
||||
messagingTemplate.send(input, MessageBuilder.withPayload("foo").build());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user