Adapt to breaking API change in Spring Data Commons

pull/9047/merge
Andy Wilkinson 8 years ago
parent f5da19f2db
commit 10868519e1

@ -1,5 +1,5 @@
/*
* Copyright 2012-2015 the original author or authors.
* Copyright 2012-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -33,6 +33,7 @@ import org.springframework.core.type.StandardAnnotationMetadata;
import org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource;
import org.springframework.data.repository.config.RepositoryConfigurationDelegate;
import org.springframework.data.repository.config.RepositoryConfigurationExtension;
import org.springframework.data.util.Streamable;
/**
* Base {@link ImportBeanDefinitionRegistrar} used to auto-configure Spring Data
@ -66,15 +67,15 @@ public abstract class AbstractRepositoryConfigurationSourceSupport
return new AnnotationRepositoryConfigurationSource(metadata, getAnnotation(),
this.resourceLoader, this.environment) {
@Override
public java.lang.Iterable<String> getBasePackages() {
public Streamable<String> getBasePackages() {
return AbstractRepositoryConfigurationSourceSupport.this
.getBasePackages();
}
};
}
protected Iterable<String> getBasePackages() {
return AutoConfigurationPackages.get(this.beanFactory);
protected Streamable<String> getBasePackages() {
return Streamable.of(AutoConfigurationPackages.get(this.beanFactory));
}
/**

Loading…
Cancel
Save