Optimize ConfigurationPropertyName.buildToString()
See gh-16658
This commit is contained in:
parent
32040e355b
commit
cf05959375
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue