Commit 2bd8c2bf authored by Stephane Nicoll's avatar Stephane Nicoll

Polish

See gh-11181
parent bae6b311
......@@ -75,7 +75,9 @@ final class SystemEnvironmentPropertyMapper implements PropertyMapper {
private String convertName(ConfigurationPropertyName name, int numberOfElements) {
StringBuilder result = new StringBuilder();
for (int i = 0; i < numberOfElements; i++) {
result.append(result.length() == 0 ? "" : "_");
if (result.length() > 0) {
result.append("_");
}
result.append(name.getElement(i, Form.UNIFORM).toUpperCase());
}
return result.toString();
......@@ -84,7 +86,9 @@ final class SystemEnvironmentPropertyMapper implements PropertyMapper {
private String convertLegacyName(ConfigurationPropertyName name) {
StringBuilder result = new StringBuilder();
for (int i = 0; i < name.getNumberOfElements(); i++) {
result.append(result.length() == 0 ? "" : "_");
if (result.length() > 0) {
result.append("_");
}
result.append(convertLegacyNameElement(name.getElement(i, Form.ORIGINAL)));
}
return result.toString();
......
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