From 8c15b13fdaf57ce7b97a4f6aeae63a8ca7bf8b21 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 25 Jul 2014 08:45:40 -0700 Subject: [PATCH] Change private method name --- .../boot/bind/PropertySourcesPropertyValues.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java b/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java index 0ee422f3cc..29c63d0628 100644 --- a/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java +++ b/spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java @@ -76,11 +76,11 @@ public class PropertySourcesPropertyValues implements PropertyValues { .toArray(new String[0]); String[] exacts = names == null ? new String[0] : names.toArray(new String[0]); 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) { if (source instanceof EnumerablePropertySource) { EnumerablePropertySource enumerable = (EnumerablePropertySource) source; @@ -107,7 +107,7 @@ public class PropertySourcesPropertyValues implements PropertyValues { else if (source instanceof CompositePropertySource) { CompositePropertySource composite = (CompositePropertySource) source; for (PropertySource nested : extractSources(composite)) { - processPropertSource(nested, resolver, includes, exacts); + processPropertySource(nested, resolver, includes, exacts); } } else {