Skip to content

Commit 8c15b13

Browse files
author
Dave Syer
committed
Change private method name
1 parent 32ede50 commit 8c15b13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ public PropertySourcesPropertyValues(PropertySources propertySources,
7676
.toArray(new String[0]);
7777
String[] exacts = names == null ? new String[0] : names.toArray(new String[0]);
7878
for (PropertySource<?> source : propertySources) {
79-
processPropertSource(source, resolver, includes, exacts);
79+
processPropertySource(source, resolver, includes, exacts);
8080
}
8181
}
8282

83-
private void processPropertSource(PropertySource<?> source,
83+
private void processPropertySource(PropertySource<?> source,
8484
PropertySourcesPropertyResolver resolver, String[] includes, String[] exacts) {
8585
if (source instanceof EnumerablePropertySource) {
8686
EnumerablePropertySource<?> enumerable = (EnumerablePropertySource<?>) source;
@@ -107,7 +107,7 @@ private void processPropertSource(PropertySource<?> source,
107107
else if (source instanceof CompositePropertySource) {
108108
CompositePropertySource composite = (CompositePropertySource) source;
109109
for (PropertySource<?> nested : extractSources(composite)) {
110-
processPropertSource(nested, resolver, includes, exacts);
110+
processPropertySource(nested, resolver, includes, exacts);
111111
}
112112
}
113113
else {

0 commit comments

Comments
 (0)