Commit 05a7d213 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Polish ItemMetadata.buildName()

Closes gh-14024
parent 243278d5
...@@ -58,14 +58,17 @@ public final class ItemMetadata implements Comparable<ItemMetadata> { ...@@ -58,14 +58,17 @@ public final class ItemMetadata implements Comparable<ItemMetadata> {
} }
private String buildName(String prefix, String name) { private String buildName(String prefix, String name) {
while (prefix != null && prefix.endsWith(".")) { StringBuilder fullName = new StringBuilder();
if (prefix != null) {
if (prefix.endsWith(".")) {
prefix = prefix.substring(0, prefix.length() - 1); prefix = prefix.substring(0, prefix.length() - 1);
} }
StringBuilder fullName = new StringBuilder((prefix != null) ? prefix : ""); fullName.append(prefix);
if (fullName.length() > 0 && name != null) {
fullName.append('.');
} }
if (name != null) { if (name != null) {
if (fullName.length() > 0) {
fullName.append('.');
}
fullName.append(ConfigurationMetadata.toDashedCase(name)); fullName.append(ConfigurationMetadata.toDashedCase(name));
} }
return fullName.toString(); return fullName.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