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

@@ -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");
}
});