Merge pull request #16658 from Christoph Dreis

* gh-16658:
  Optimize ConfigurationPropertyName.buildToString()

Closes gh-16658
pull/16662/head
Andy Wilkinson 6 years ago
commit ed8a10b2fb

@ -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…
Cancel
Save