Replace space indentation with tabs

Issue: SPR-10127
This commit is contained in:
Phillip Webb
2012-12-19 14:55:41 -08:00
committed by Chris Beams
parent 1762157ad1
commit 2cf45bad86
154 changed files with 1481 additions and 1476 deletions

View File

@@ -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;
//-------------------------------------------------------------------------

View File

@@ -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 {