mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Simplify method calling.
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user