Remove unnecessary null check

See gh-40963
This commit is contained in:
Yanming Zhou 2024-05-31 15:50:36 +08:00 committed by Moritz Halbritter
parent 043d71f820
commit 5cfd079c55

View File

@ -87,7 +87,7 @@ public final class ConfigurationPropertySources {
Assert.isInstanceOf(ConfigurableEnvironment.class, environment);
MutablePropertySources sources = ((ConfigurableEnvironment) environment).getPropertySources();
PropertySource<?> attached = getAttached(sources);
if (attached == null || !isUsingSources(attached, sources)) {
if (!isUsingSources(attached, sources)) {
attached = new ConfigurationPropertySourcesPropertySource(ATTACHED_PROPERTY_SOURCE_NAME,
new SpringConfigurationPropertySources(sources));
}