mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Remove redundant parentheses.
This commit is contained in:
@@ -110,7 +110,7 @@ namespace DiscImageChef.Filesystems.CPM
|
||||
else if(entry.statusUser == 0x21)
|
||||
{
|
||||
if(directory[off + 1] == 0x00) { thirdPartyTimestamps = true; }
|
||||
else standardTimestamps |= (directory[off + 21] == 0x00 && directory[off + 31] == 0x00);
|
||||
else standardTimestamps |= directory[off + 21] == 0x00 && directory[off + 31] == 0x00;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user