From a605443590ec39bb524997ef3b88e3620de04096 Mon Sep 17 00:00:00 2001 From: James Groom Date: Fri, 24 Nov 2023 05:28:41 +0000 Subject: [PATCH] Mute code style warnings in iso-parser --- ExternalProjects/iso-parser/ISOFile.cs | 2 ++ ExternalProjects/iso-parser/ISONodeRecord.cs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ExternalProjects/iso-parser/ISOFile.cs b/ExternalProjects/iso-parser/ISOFile.cs index 9e9ac593af..4ebce8fbd4 100644 --- a/ExternalProjects/iso-parser/ISOFile.cs +++ b/ExternalProjects/iso-parser/ISOFile.cs @@ -51,12 +51,14 @@ namespace ISOParser /// public const int SECTOR_SIZE = 2048; +#pragma warning disable CA2211 /// /// Making this a static for now. Every other way I tried was fairly ineligant (asni) /// public static ISOFormat Format; public static List CDIPathTable; +#pragma warning restore CA2211 /// /// This is a list of all the volume descriptors in the disk image. diff --git a/ExternalProjects/iso-parser/ISONodeRecord.cs b/ExternalProjects/iso-parser/ISONodeRecord.cs index 108fa10196..02cace6c6c 100644 --- a/ExternalProjects/iso-parser/ISONodeRecord.cs +++ b/ExternalProjects/iso-parser/ISONodeRecord.cs @@ -161,11 +161,11 @@ namespace ISOParser // Read Data Offset s.Read(buffer, 0, 8); - this.OffsetOfData = (long)bc.ToInt32(buffer); + this.OffsetOfData = bc.ToInt32(buffer); // Read Data Length s.Read(buffer, 0, 8); - this.LengthOfData = (long)bc.ToInt32(buffer); + this.LengthOfData = bc.ToInt32(buffer); // Read the time and flags s.Read(buffer, 0, 8);