Polish contribution

See gh-26462
Closes gh-26586
This commit is contained in:
Johnny Lim
2021-02-22 19:05:25 +09:00
committed by GitHub
parent 313e754a84
commit dfc8406917
3 changed files with 18 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ class CustomEnvironmentTests {
}
@Test
public void withNoProfileProperties() {
void withNoProfileProperties() {
ConfigurableEnvironment env = new AbstractEnvironment() {
@Override
@Nullable
@@ -131,7 +131,7 @@ class CustomEnvironmentTests {
}
@Test
public void withCustomMutablePropertySources() {
void withCustomMutablePropertySources() {
class CustomMutablePropertySources extends MutablePropertySources {}
MutablePropertySources propertySources = new CustomMutablePropertySources();
ConfigurableEnvironment env = new AbstractEnvironment(propertySources) {};