REFACTOR: Reformat code.

This commit is contained in:
2017-12-19 20:33:03 +00:00
parent 77edc7c91c
commit e6f6ace80b
704 changed files with 82627 additions and 83641 deletions

View File

@@ -56,8 +56,7 @@ namespace DiscImageChef.Decoders.SCSI
{
ushort len = (ushort)((response[0] << 8) + response[1]);
if(len + 2 != response.Length)
return null;
if(len + 2 != response.Length) return null;
List<Capability> caps = new List<Capability>();
@@ -76,5 +75,4 @@ namespace DiscImageChef.Decoders.SCSI
return caps.ToArray();
}
}
}
}