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('.');
|
result.append('.');
|
||||||
}
|
}
|
||||||
if (indexed) {
|
if (indexed) {
|
||||||
result.append("[");
|
result.append('[');
|
||||||
result.append(getElement(i, Form.ORIGINAL));
|
result.append(getElement(i, Form.ORIGINAL));
|
||||||
result.append("]");
|
result.append(']');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result.append(getElement(i, Form.DASHED));
|
result.append(getElement(i, Form.DASHED));
|
||||||
|
|
Loading…
Reference in New Issue