@@ -76,11 +76,11 @@ public PropertySourcesPropertyValues(PropertySources propertySources,
76
76
.toArray (new String [0 ]);
77
77
String [] exacts = names == null ? new String [0 ] : names .toArray (new String [0 ]);
78
78
for (PropertySource <?> source : propertySources ) {
79
- processPropertSource (source , resolver , includes , exacts );
79
+ processPropertySource (source , resolver , includes , exacts );
80
80
}
81
81
}
82
82
83
- private void processPropertSource (PropertySource <?> source ,
83
+ private void processPropertySource (PropertySource <?> source ,
84
84
PropertySourcesPropertyResolver resolver , String [] includes , String [] exacts ) {
85
85
if (source instanceof EnumerablePropertySource ) {
86
86
EnumerablePropertySource <?> enumerable = (EnumerablePropertySource <?>) source ;
@@ -107,7 +107,7 @@ private void processPropertSource(PropertySource<?> source,
107
107
else if (source instanceof CompositePropertySource ) {
108
108
CompositePropertySource composite = (CompositePropertySource ) source ;
109
109
for (PropertySource <?> nested : extractSources (composite )) {
110
- processPropertSource (nested , resolver , includes , exacts );
110
+ processPropertySource (nested , resolver , includes , exacts );
111
111
}
112
112
}
113
113
else {
0 commit comments