diff --git a/src/com/bytezone/diskbrowser/pascal/PascalDisk.java b/src/com/bytezone/diskbrowser/pascal/PascalDisk.java index 79bda7a..82690ff 100755 --- a/src/com/bytezone/diskbrowser/pascal/PascalDisk.java +++ b/src/com/bytezone/diskbrowser/pascal/PascalDisk.java @@ -29,7 +29,8 @@ public class PascalDisk extends AbstractFormattedDisk // -----------------------------------------------------------------------------------// { static final int CATALOG_ENTRY_SIZE = 26; - private final DateTimeFormatter dtf = DateTimeFormatter.ofLocalizedDate (FormatStyle.SHORT); + private final DateTimeFormatter dtf = + DateTimeFormatter.ofLocalizedDate (FormatStyle.SHORT); private final VolumeEntry volumeEntry; private final PascalCatalogSector diskCatalogSector; @@ -48,8 +49,8 @@ public class PascalDisk extends AbstractFormattedDisk SectorType fotoSector = new SectorType ("Foto", Color.gray); SectorType badSector = new SectorType ("Bad", Color.darkGray); - SectorType[] sectors = { catalogSector, badSector, codeSector, textSector, infoSector, dataSector, - grafSector, fotoSector }; + SectorType[] sectors = { catalogSector, badSector, codeSector, textSector, infoSector, + dataSector, grafSector, fotoSector }; // ---------------------------------------------------------------------------------// public PascalDisk (Disk disk) @@ -100,7 +101,8 @@ public class PascalDisk extends AbstractFormattedDisk freeBlocks.set (i, false); } - diskCatalogSector = new PascalCatalogSector (disk, disk.readBlocks (sectors), sectors); + diskCatalogSector = + new PascalCatalogSector (disk, disk.readBlocks (sectors), sectors); // read the catalog List addresses = new ArrayList<> (); @@ -297,16 +299,18 @@ public class PascalDisk extends AbstractFormattedDisk { String newLine = String.format ("%n"); String newLine2 = newLine + newLine; - String line = - "---- --------------- ---- -------- ------- ---- ---- ----" + newLine; + String line = "---- --------------- ---- -------- ------- ---- ---- ----" + + newLine; - String date = volumeEntry.localDate == null ? "--" : volumeEntry.localDate.format (dtf); + String date = + volumeEntry.localDate == null ? "--" : volumeEntry.localDate.format (dtf); StringBuilder text = new StringBuilder (); text.append ("File : " + getDisplayPath () + newLine2); text.append ("Volume : " + volumeEntry.name + newLine); text.append ("Date : " + date + newLine2); - text.append ("Blks Name Type Date Length Frst Last Blks\n"); + text.append ( + "Blks Name Type Date Length Frst Last Blks\n"); text.append (line); int usedBlocks = 6; @@ -319,15 +323,16 @@ public class PascalDisk extends AbstractFormattedDisk date = ce.localDate == null ? "--" : ce.localDate.format (dtf); int bytes = (size - 1) * 512 + ce.bytesUsedInLastBlock; - String fileType = - ce.fileType < 0 || ce.fileType >= fileTypes.length ? "????" : fileTypes[ce.fileType]; - text.append (String.format ("%4d %-15s %-6s %8s %,8d $%03X $%03X $%03X%n", size, - ce.name, fileType, date, bytes, ce.firstBlock, ce.lastBlock, size)); + String fileType = ce.fileType < 0 || ce.fileType >= fileTypes.length ? "????" + : fileTypes[ce.fileType]; + text.append (String.format ("%4d %-15s %-6s %8s %,8d $%03X $%03X $%03X%n", + size, ce.name, fileType, date, bytes, ce.firstBlock, ce.lastBlock, size)); } text.append (line); - text.append (String.format ("Blocks free : %3d Blocks used : %3d Total blocks : %3d%n", - (volumeEntry.totalBlocks - usedBlocks), usedBlocks, volumeEntry.totalBlocks)); + text.append ( + String.format ("Blocks free : %3d Blocks used : %3d Total blocks : %3d%n", + (volumeEntry.totalBlocks - usedBlocks), usedBlocks, volumeEntry.totalBlocks)); return new DefaultAppleFileSource (volumeEntry.name, text.toString (), this); }