Fix violation reported by Checkstyle
This commit is contained in:
parent
a6f8351dd6
commit
198093c6a8
|
@ -117,9 +117,9 @@ public class LiquibaseAutoConfiguration {
|
|||
|
||||
private SpringLiquibase createSpringLiquibase() {
|
||||
SpringLiquibase liquibase;
|
||||
DataSource dataSource = getDataSource();
|
||||
if (dataSource == null) {
|
||||
dataSource = DataSourceBuilder.create().url(this.properties.getUrl())
|
||||
DataSource dataSourceToUse = getDataSource();
|
||||
if (dataSourceToUse == null) {
|
||||
dataSourceToUse = DataSourceBuilder.create().url(this.properties.getUrl())
|
||||
.username(this.properties.getUser())
|
||||
.password(this.properties.getPassword()).build();
|
||||
liquibase = new DataSourceClosingSpringLiquibase();
|
||||
|
@ -127,7 +127,7 @@ public class LiquibaseAutoConfiguration {
|
|||
else {
|
||||
liquibase = new SpringLiquibase();
|
||||
}
|
||||
liquibase.setDataSource(dataSource);
|
||||
liquibase.setDataSource(dataSourceToUse);
|
||||
return liquibase;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue