Skip to content

Commit

Permalink
Remove trailing space before closing curly bracket for LDJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
pmwmedia committed May 25, 2022
1 parent e234a16 commit 4b0e279
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,7 @@ private void addJsonObject(final LogEntry logEntry, final StringBuilder builder)
}
}

if (lineDelimitedJson) {
builder.append(' ');
} else {
if (!lineDelimitedJson) {
builder.append(NEW_LINE).append('\t');
}

Expand Down

0 comments on commit 4b0e279

Please sign in to comment.