Whitespace polishing: leading spaces->tabs; updated eclipse configuration to default to leading tabs for all bundles
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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());
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user