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
b5c3c33b
Commit
b5c3c33b
authored
Aug 09, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14024 from izeye:polish-item-metadata-build-name
* pr/14024: Polish ItemMetadata.buildName()
parents
243278d5
05a7d213
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
ItemMetadata.java
...rk/boot/configurationprocessor/metadata/ItemMetadata.java
+9
-6
No files found.
spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java
View file @
b5c3c33b
...
...
@@ -58,14 +58,17 @@ public final class ItemMetadata implements Comparable<ItemMetadata> {
}
private
String
buildName
(
String
prefix
,
String
name
)
{
while
(
prefix
!=
null
&&
prefix
.
endsWith
(
"."
))
{
prefix
=
prefix
.
substring
(
0
,
prefix
.
length
()
-
1
);
}
StringBuilder
fullName
=
new
StringBuilder
((
prefix
!=
null
)
?
prefix
:
""
);
if
(
fullName
.
length
()
>
0
&&
name
!=
null
)
{
fullName
.
append
(
'.'
);
StringBuilder
fullName
=
new
StringBuilder
();
if
(
prefix
!=
null
)
{
if
(
prefix
.
endsWith
(
"."
))
{
prefix
=
prefix
.
substring
(
0
,
prefix
.
length
()
-
1
);
}
fullName
.
append
(
prefix
);
}
if
(
name
!=
null
)
{
if
(
fullName
.
length
()
>
0
)
{
fullName
.
append
(
'.'
);
}
fullName
.
append
(
ConfigurationMetadata
.
toDashedCase
(
name
));
}
return
fullName
.
toString
();
...
...
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