Commit 8c15b13f authored by Dave Syer's avatar Dave Syer

Change private method name

parent 32ede50d
...@@ -76,11 +76,11 @@ public class PropertySourcesPropertyValues implements PropertyValues { ...@@ -76,11 +76,11 @@ public class PropertySourcesPropertyValues implements PropertyValues {
.toArray(new String[0]); .toArray(new String[0]);
String[] exacts = names == null ? new String[0] : names.toArray(new String[0]); String[] exacts = names == null ? new String[0] : names.toArray(new String[0]);
for (PropertySource<?> source : propertySources) { for (PropertySource<?> source : propertySources) {
processPropertSource(source, resolver, includes, exacts); processPropertySource(source, resolver, includes, exacts);
} }
} }
private void processPropertSource(PropertySource<?> source, private void processPropertySource(PropertySource<?> source,
PropertySourcesPropertyResolver resolver, String[] includes, String[] exacts) { PropertySourcesPropertyResolver resolver, String[] includes, String[] exacts) {
if (source instanceof EnumerablePropertySource) { if (source instanceof EnumerablePropertySource) {
EnumerablePropertySource<?> enumerable = (EnumerablePropertySource<?>) source; EnumerablePropertySource<?> enumerable = (EnumerablePropertySource<?>) source;
...@@ -107,7 +107,7 @@ public class PropertySourcesPropertyValues implements PropertyValues { ...@@ -107,7 +107,7 @@ public class PropertySourcesPropertyValues implements PropertyValues {
else if (source instanceof CompositePropertySource) { else if (source instanceof CompositePropertySource) {
CompositePropertySource composite = (CompositePropertySource) source; CompositePropertySource composite = (CompositePropertySource) source;
for (PropertySource<?> nested : extractSources(composite)) { for (PropertySource<?> nested : extractSources(composite)) {
processPropertSource(nested, resolver, includes, exacts); processPropertySource(nested, resolver, includes, exacts);
} }
} }
else { else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment