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 {

View File

@@ -366,7 +366,7 @@ public class JmsTemplate102Tests extends TestCase {
template.execute(new ProducerCallback() {
public Object doInJms(Session session, MessageProducer producer)
throws JMSException {
throws JMSException {
boolean b = session.getTransacted();
int i = producer.getPriority();
return null;
@@ -627,7 +627,7 @@ public class JmsTemplate102Tests extends TestCase {
else {
template.send("testQueue", new MessageCreator() {
public Message createMessage(Session session)
throws JMSException {
throws JMSException {
return session.createTextMessage("just testing");
}
});
@@ -690,7 +690,7 @@ public class JmsTemplate102Tests extends TestCase {
if (explicitTopic) {
template.send(mockTopic, new MessageCreator() {
public Message createMessage(Session session)
throws JMSException {
throws JMSException {
return session.createTextMessage("just testing");
}
});
@@ -698,7 +698,7 @@ public class JmsTemplate102Tests extends TestCase {
else {
template.send("testTopic", new MessageCreator() {
public Message createMessage(Session session)
throws JMSException {
throws JMSException {
return session.createTextMessage("just testing");
}
});