Commit ed8a10b2 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge pull request #16658 from Christoph Dreis

* gh-16658:
  Optimize ConfigurationPropertyName.buildToString()

Closes gh-16658
parents 32040e35 cf059593
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment