Commit c544921e authored by Phillip Webb's avatar Phillip Webb

Polish whitespace

parent 15bc25dc
...@@ -51,7 +51,8 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi ...@@ -51,7 +51,8 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi
* @author Oliver Gierke * @author Oliver Gierke
*/ */
public abstract class AbstractRepositoryConfigurationSourceSupport implements public abstract class AbstractRepositoryConfigurationSourceSupport implements
BeanFactoryAware, ImportBeanDefinitionRegistrar, BeanClassLoaderAware, EnvironmentAware { BeanFactoryAware, ImportBeanDefinitionRegistrar, BeanClassLoaderAware,
EnvironmentAware {
private static Log logger = LogFactory private static Log logger = LogFactory
.getLog(AbstractRepositoryConfigurationSourceSupport.class); .getLog(AbstractRepositoryConfigurationSourceSupport.class);
...@@ -59,7 +60,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements ...@@ -59,7 +60,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements
private ClassLoader beanClassLoader; private ClassLoader beanClassLoader;
private BeanFactory beanFactory; private BeanFactory beanFactory;
private Environment environment; private Environment environment;
@Override @Override
...@@ -95,7 +96,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements ...@@ -95,7 +96,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements
StandardAnnotationMetadata metadata = new StandardAnnotationMetadata( StandardAnnotationMetadata metadata = new StandardAnnotationMetadata(
getConfiguration(), true); getConfiguration(), true);
AnnotationRepositoryConfigurationSource configurationSource = new AnnotationRepositoryConfigurationSource( AnnotationRepositoryConfigurationSource configurationSource = new AnnotationRepositoryConfigurationSource(
metadata, getAnnotation(), environment) { metadata, getAnnotation(), this.environment) {
@Override @Override
public java.lang.Iterable<String> getBasePackages() { public java.lang.Iterable<String> getBasePackages() {
......
...@@ -27,7 +27,7 @@ public class SampleController { ...@@ -27,7 +27,7 @@ public class SampleController {
@Autowired @Autowired
private HelloWorldService helloWorldService; private HelloWorldService helloWorldService;
@RequestMapping("/") @RequestMapping("/")
@ResponseBody @ResponseBody
public String helloWorld() { public String helloWorld() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment