diff --git a/src/com/bytezone/diskbrowser/nufx/Binary2.java b/src/com/bytezone/diskbrowser/nufx/Binary2.java index 4442fa8..eeb9724 100644 --- a/src/com/bytezone/diskbrowser/nufx/Binary2.java +++ b/src/com/bytezone/diskbrowser/nufx/Binary2.java @@ -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 (); } }