Skip to content

Commit e5d97cc

Browse files
committed
Merge branch '3.3.x'
Closes gh-41919
2 parents 09e119b + ff739b6 commit e5d97cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/SpringConfigurationPropertySource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ private static boolean isFullEnumerable(PropertySource<?> source) {
180180
}
181181

182182
private static PropertySource<?> getRootSource(PropertySource<?> source) {
183-
while (source.getSource() != null && source.getSource() instanceof PropertySource<?> propertySource) {
183+
while (source.getSource() instanceof PropertySource<?> propertySource) {
184184
source = propertySource;
185185
}
186186
return source;

0 commit comments

Comments
 (0)