Unused code (for real this time!). #36

This commit is contained in:
Rob Greene 2019-10-06 13:07:24 -05:00
parent f8eef28cf6
commit c82571df3c
1 changed files with 0 additions and 2 deletions

View File

@ -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)));
}