Skip to content

Commit

Permalink
Merge pull request spring-projects#16658 from Christoph Dreis
Browse files Browse the repository at this point in the history
* spring-projectsgh-16658:
  Optimize ConfigurationPropertyName.buildToString()

Closes spring-projectsgh-16658
  • Loading branch information
wilkinsona committed Apr 25, 2019
2 parents 32040e3 + cf05959 commit ed8a10b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@ private String buildToString() {
result.append('.');
}
if (indexed) {
result.append("[");
result.append('[');
result.append(getElement(i, Form.ORIGINAL));
result.append("]");
result.append(']');
}
else {
result.append(getElement(i, Form.DASHED));
Expand Down

0 comments on commit ed8a10b

Please sign in to comment.