From c82571df3c007499c962b3bca8c41e062335bc91 Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Sun, 6 Oct 2019 13:07:24 -0500 Subject: [PATCH] Unused code (for real this time!). #36 --- src/main/java/com/webcodepro/applecommander/storage/Disk.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/webcodepro/applecommander/storage/Disk.java b/src/main/java/com/webcodepro/applecommander/storage/Disk.java index c7a8355..7f0a04f 100644 --- a/src/main/java/com/webcodepro/applecommander/storage/Disk.java +++ b/src/main/java/com/webcodepro/applecommander/storage/Disk.java @@ -814,8 +814,6 @@ public class Disk { * @return boolean liklihood it is a DC42 stream */ private static boolean isDC42(byte[] buffer) { - boolean truth = ((buffer[0x52] == 0x01) && (buffer[0x53] == 0x00)) && - ((buffer[0x51] == 0x02) || (buffer[0x51] == 0x22) || (buffer[0x51] == 0x24)); return (((buffer[0x52] == 0x01) && (buffer[0x53] == 0x00)) && ((buffer[0x51] == 0x02) || (buffer[0x51] == 0x22) || (buffer[0x51] == 0x24))); }