Polish
See gh-14049
This commit is contained in:
committed by
Stephane Nicoll
parent
895d092640
commit
b4abccc07c
@@ -79,7 +79,6 @@ public class LiquibaseEndpointTests {
|
||||
|
||||
private boolean getAutoCommit(DataSource dataSource) throws SQLException {
|
||||
try (Connection connection = dataSource.getConnection()) {
|
||||
System.out.println(connection);
|
||||
return connection.getAutoCommit();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -685,12 +685,9 @@ public class ConfigFileApplicationListener
|
||||
* @param processedProfiles the processed profiles
|
||||
*/
|
||||
private void resetEnvironmentProfiles(List<Profile> processedProfiles) {
|
||||
String[] names = processedProfiles.stream().filter((profile) -> {
|
||||
if (profile != null && !profile.isDefaultProfile()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}).map(Profile::getName).toArray(String[]::new);
|
||||
String[] names = processedProfiles.stream()
|
||||
.filter((profile) -> profile != null && !profile.isDefaultProfile())
|
||||
.map(Profile::getName).toArray(String[]::new);
|
||||
this.environment.setActiveProfiles(names);
|
||||
}
|
||||
|
||||
|
||||
@@ -616,7 +616,7 @@ public class MapBinderTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void bindToImmutableMapShouldReturnPopulatedCollection() {
|
||||
public void bindToImmutableMapShouldReturnPopulatedMap() {
|
||||
MockConfigurationPropertySource source = new MockConfigurationPropertySource();
|
||||
source.put("foo.values.c", "d");
|
||||
source.put("foo.values.e", "f");
|
||||
|
||||
Reference in New Issue
Block a user