Simplify method calling.

This commit is contained in:
2017-06-03 01:26:22 +01:00
parent 9e1867b48b
commit f47749fa5a

View File

@@ -47,10 +47,10 @@ namespace DiscImageChef.Core.Devices.Report
{ {
report.PCMCIA = new pcmciaType(); report.PCMCIA = new pcmciaType();
report.PCMCIA.CIS = dev.CIS; report.PCMCIA.CIS = dev.CIS;
Decoders.PCMCIA.Tuple[] tuples = CIS.GetTuples(dev.CIS); Tuple[] tuples = CIS.GetTuples(dev.CIS);
if(tuples != null) if(tuples != null)
{ {
foreach(Decoders.PCMCIA.Tuple tuple in tuples) foreach(Tuple tuple in tuples)
{ {
if(tuple.Code == TupleCodes.CISTPL_MANFID) if(tuple.Code == TupleCodes.CISTPL_MANFID)
{ {