mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Merge null/pattern checks into complex pattern.
This commit is contained in:
@@ -414,8 +414,8 @@ public sealed partial class Udif
|
||||
return ErrorNumber.NotImplemented;
|
||||
}
|
||||
|
||||
if(bChnk.type > CHUNK_TYPE_NOCOPY && bChnk.type < CHUNK_TYPE_COMMNT ||
|
||||
bChnk.type > CHUNK_TYPE_LZMA && bChnk.type < CHUNK_TYPE_END)
|
||||
if(bChnk.type is > CHUNK_TYPE_NOCOPY and < CHUNK_TYPE_COMMNT ||
|
||||
bChnk.type is > CHUNK_TYPE_LZMA and < CHUNK_TYPE_END)
|
||||
{
|
||||
AaruConsole.ErrorWriteLine($"Unsupported chunk type 0x{bChnk.type:X8} found");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user