REFACTOR: Removed unneeded value sets.

This commit is contained in:
2017-12-21 16:07:20 +00:00
parent 9883b567ff
commit bcbda18e4d
110 changed files with 203 additions and 280 deletions

View File

@@ -160,7 +160,7 @@ namespace DiscImageChef.Filesystems
xmlFSType = new FileSystemType();
bool littleEndian = true;
bool littleEndian;
if(magic == MINIX3_MAGIC || magic == MINIX3_CIGAM || magic == MINIX2_MAGIC || magic == MINIX2_CIGAM ||
magic == MINIX_MAGIC || magic == MINIX_CIGAM)
@@ -247,7 +247,7 @@ namespace DiscImageChef.Filesystems
if(minix3)
{
Minix3SuperBlock mnx_sb = new Minix3SuperBlock();
Minix3SuperBlock mnx_sb;
if(littleEndian)
{
@@ -285,7 +285,7 @@ namespace DiscImageChef.Filesystems
}
else
{
MinixSuperBlock mnx_sb = new MinixSuperBlock();
MinixSuperBlock mnx_sb;
if(littleEndian)
{