mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 10:59:03 +00:00
Merge pull request #16658 from Christoph Dreis
* gh-16658: Optimize ConfigurationPropertyName.buildToString() Closes gh-16658
This commit is contained in:
+2
-2
@@ -448,9 +448,9 @@ public final class ConfigurationPropertyName
|
||||
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));
|
||||
|
||||
Reference in New Issue
Block a user