Replace space indentation with tabs
Issue: SPR-10127
This commit is contained in:
committed by
Chris Beams
parent
1762157ad1
commit
2cf45bad86
@@ -160,7 +160,7 @@ public interface JmsOperations {
|
||||
* @throws JmsException checked JMSException converted to unchecked
|
||||
*/
|
||||
void convertAndSend(Object message, MessagePostProcessor postProcessor)
|
||||
throws JmsException;
|
||||
throws JmsException;
|
||||
|
||||
/**
|
||||
* Send the given object to the specified destination, converting the object
|
||||
@@ -172,7 +172,7 @@ public interface JmsOperations {
|
||||
* @throws JmsException checked JMSException converted to unchecked
|
||||
*/
|
||||
void convertAndSend(Destination destination, Object message, MessagePostProcessor postProcessor)
|
||||
throws JmsException;
|
||||
throws JmsException;
|
||||
|
||||
/**
|
||||
* Send the given object to the specified destination, converting the object
|
||||
@@ -185,7 +185,7 @@ public interface JmsOperations {
|
||||
* @throws JmsException checked JMSException converted to unchecked
|
||||
*/
|
||||
void convertAndSend(String destinationName, Object message, MessagePostProcessor postProcessor)
|
||||
throws JmsException;
|
||||
throws JmsException;
|
||||
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
@@ -648,7 +648,7 @@ public class JmsTemplate extends JmsDestinationAccessor implements JmsOperations
|
||||
|
||||
public void convertAndSend(
|
||||
String destinationName, final Object message, final MessagePostProcessor postProcessor)
|
||||
throws JmsException {
|
||||
throws JmsException {
|
||||
|
||||
send(destinationName, new MessageCreator() {
|
||||
public Message createMessage(Session session) throws JMSException {
|
||||
|
||||
Reference in New Issue
Block a user