Skip to content

Commit

Permalink
lightbend#806 Skip ignoredWhitespaces when rendering concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
guerrillalg committed Jul 8, 2024
1 parent d279841 commit 6389a1a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ public int hashCode() {
@Override
protected void render(StringBuilder sb, int indent, boolean atRoot, ConfigRenderOptions options) {
for (AbstractConfigValue p : pieces) {
if (isIgnoredWhitespace(p)) {
continue;
}
p.render(sb, indent, atRoot, options);
}
}
Expand Down

0 comments on commit 6389a1a

Please sign in to comment.