REFACTOR: Use preferred braces style.

This commit is contained in:
2017-12-21 00:44:33 +00:00
parent e9443388ee
commit bce69c9161
171 changed files with 5 additions and 1412 deletions

View File

@@ -44,9 +44,7 @@ namespace DiscImageChef.Core.Devices.Report
report.PCMCIA.CIS = dev.Cis;
Tuple[] tuples = CIS.GetTuples(dev.Cis);
if(tuples != null)
{
foreach(Tuple tuple in tuples)
{
if(tuple.Code == TupleCodes.CISTPL_MANFID)
{
ManufacturerIdentificationTuple manfid = CIS.DecodeManufacturerIdentificationTuple(tuple);
@@ -71,8 +69,6 @@ namespace DiscImageChef.Core.Devices.Report
report.PCMCIA.AdditionalInformation = vers.AdditionalInformation;
}
}
}
}
}
}
}