Polish
This commit is contained in:
parent
ec4c8bf50d
commit
ed6f11d60d
|
@ -83,10 +83,8 @@ public class DataSourceBuilder {
|
|||
|
||||
private void bind(DataSource result) {
|
||||
MutablePropertyValues properties = new MutablePropertyValues(this.properties);
|
||||
new RelaxedDataBinder(result)
|
||||
.withAlias("url", "jdbcUrl")
|
||||
.withAlias("username", "user")
|
||||
.bind(properties);
|
||||
new RelaxedDataBinder(result).withAlias("url", "jdbcUrl")
|
||||
.withAlias("username", "user").bind(properties);
|
||||
}
|
||||
|
||||
public DataSourceBuilder type(Class<? extends DataSource> type) {
|
||||
|
|
|
@ -76,7 +76,6 @@ public class AbstractDevToolsDataSourceAutoConfigurationTests {
|
|||
@Test
|
||||
public void emptyFactoryMethodMetadataIgnored() {
|
||||
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
|
||||
|
||||
DataSource dataSource = mock(DataSource.class);
|
||||
AnnotatedGenericBeanDefinition beanDefinition = new AnnotatedGenericBeanDefinition(
|
||||
dataSource.getClass());
|
||||
|
|
Loading…
Reference in New Issue