Optimize ConfigurationPropertyName.buildToString()

See gh-16658
pull/16662/head
dreis2211 6 years ago committed by Andy Wilkinson
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…
Cancel
Save