Whitespace polishing: leading spaces->tabs; updated eclipse configuration to default to leading tabs for all bundles

This commit is contained in:
Chris Beams
2008-12-18 14:50:25 +00:00
parent 0f521c3bfb
commit 579280d7bf
87 changed files with 4294 additions and 654 deletions

View File

@@ -28,7 +28,7 @@ package org.springframework.context;
* @see org.springframework.context.event.EventPublicationInterceptor
*/
public interface ApplicationEventPublisher {
/**
* Notify all listeners registered with this application of an application
* event. Events may be framework events (such as RequestHandledEvent)

View File

@@ -44,11 +44,11 @@ abstract class AbstractPropertyLoadingBeanDefinitionParser extends AbstractSingl
String[] locations = StringUtils.commaDelimitedListToStringArray(location);
builder.addPropertyValue("locations", locations);
}
String propertiesRef = element.getAttribute("properties-ref");
if (StringUtils.hasLength(propertiesRef)) {
builder.addPropertyReference("properties", propertiesRef);
}
builder.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
String propertiesRef = element.getAttribute("properties-ref");
if (StringUtils.hasLength(propertiesRef)) {
builder.addPropertyReference("properties", propertiesRef);
}
builder.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
}
}
}

View File

@@ -89,7 +89,7 @@ import org.springframework.util.StringUtils;
* @see java.util.ResourceBundle
*/
public class ReloadableResourceBundleMessageSource extends AbstractMessageSource
implements ResourceLoaderAware {
implements ResourceLoaderAware {
private static final String PROPERTIES_SUFFIX = ".properties";

View File

@@ -59,7 +59,7 @@ import org.springframework.util.ClassUtils;
* @see AbstractRemoteSlsbInvokerInterceptor#setRefreshHomeOnConnectFailure
*/
public class SimpleRemoteStatelessSessionProxyFactoryBean extends SimpleRemoteSlsbInvokerInterceptor
implements FactoryBean, BeanClassLoaderAware {
implements FactoryBean, BeanClassLoaderAware {
/** The business interface of the EJB we're proxying */
private Class businessInterface;

View File

@@ -42,8 +42,8 @@ import org.apache.commons.logging.LogFactory;
* @author Rod Johnson
*/
public abstract class AbstractMessageDrivenBean extends AbstractEnterpriseBean
implements MessageDrivenBean {
implements MessageDrivenBean {
/** Logger available to subclasses */
protected final Log logger = LogFactory.getLog(getClass());

View File

@@ -34,7 +34,7 @@ import javax.naming.NamingException;
* @see org.springframework.jdbc.core.JdbcTemplate
*/
public interface JndiCallback<T> {
/**
* Do something with the given JNDI context.
* <p>Implementations don't need to worry about error handling
@@ -43,7 +43,7 @@ public interface JndiCallback<T> {
* @throws NamingException if thrown by JNDI methods
* @return a result object, or <code>null</code>
*/
T doInContext(Context ctx) throws NamingException;
T doInContext(Context ctx) throws NamingException;
}