Skip to content

Commit

Permalink
CLDR-16720 json: trim output files
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Oct 3, 2024
1 parent 9d21b0e commit 00b36bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ private int convertCldrItems(
final String rawTransformFile = filename + TRANSFORM_RAW_SUFFIX;
try (PrintWriter outf =
FileUtilities.openUTF8Writer(outputDir, rawTransformFile)) {
outf.println(item.getValue());
outf.println(item.getValue().trim());
// note: not logging the write here- it will be logged when the
// .json file is written.
}
Expand Down

0 comments on commit 00b36bc

Please sign in to comment.