Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
8c15b13f
Commit
8c15b13f
authored
Jul 25, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change private method name
parent
32ede50d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
PropertySourcesPropertyValues.java
...ingframework/boot/bind/PropertySourcesPropertyValues.java
+3
-3
No files found.
spring-boot/src/main/java/org/springframework/boot/bind/PropertySourcesPropertyValues.java
View file @
8c15b13f
...
@@ -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
);
processPropert
y
Source
(
source
,
resolver
,
includes
,
exacts
);
}
}
}
}
private
void
processPropertSource
(
PropertySource
<?>
source
,
private
void
processPropert
y
Source
(
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
);
processPropert
y
Source
(
nested
,
resolver
,
includes
,
exacts
);
}
}
}
}
else
{
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment