Skip to content

Commit

Permalink
restore spacing in legacy output
Browse files Browse the repository at this point in the history
  • Loading branch information
KochTobi committed Jul 11, 2023
1 parent d33f72c commit 169694b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public String format(DataSetSummary dataSetSummary, boolean exactFileSize, boole
for (DataFile datafile : dataSetSummary.datafiles()) {
String fileOutput = withChecksum
? "%s\t%s\t%s".formatted(exactFileSize ? datafile.fileSize().bytes()
: FileSizeFormatter.format(datafile.fileSize()),
: FileSizeFormatter.format(datafile.fileSize(), 6),
Long.toHexString(datafile.crc32()),
datafile.fileName())
: "%s\t%s".formatted(
exactFileSize ? datafile.fileSize().bytes() : FileSizeFormatter.format(datafile.fileSize()),
exactFileSize ? datafile.fileSize().bytes() : FileSizeFormatter.format(datafile.fileSize(), 6),
datafile.fileName()) ;
result.append(fileOutput);
result.append("\n");
Expand Down

0 comments on commit 169694b

Please sign in to comment.