This commit is contained in:
Denis Molony 2021-05-21 12:59:54 +10:00
parent b6496e9c87
commit af706e03c7
1 changed files with 0 additions and 13 deletions

View File

@ -82,24 +82,11 @@ public class Binary2
text.append (String.format ("%s%n", UNDERLINE));
// int totalUncompressedSize = 0;
// int totalCompressedSize = 0;
for (Binary2Header header : headers)
{
text.append (String.format ("%s%n", header.getLine ()));
// totalUncompressedSize += record.getUncompressedSize ();
// totalCompressedSize += record.getCompressedSize ();
}
text.append (String.format ("%s%n", UNDERLINE));
// float pct = 0;
// if (totalUncompressedSize > 0)
// pct = totalCompressedSize * 100 / totalUncompressedSize;
// text.append (String.format (" Uncomp:%7d Comp:%7d %%of orig:%3.0f%%%n%n",
// totalUncompressedSize, totalCompressedSize, pct));
return text.toString ();
}
}