Naming fixes.

This commit is contained in:
2020-07-20 21:11:32 +01:00
parent c58c0fd1f8
commit 6220425ac6
525 changed files with 15675 additions and 15524 deletions

View File

@@ -40,13 +40,13 @@ namespace Aaru.DiscImages
public partial class Dart : IMediaImage
{
// DART images are at most 1474560 bytes, so let's cache the whole
byte[] dataCache;
uint dataChecksum;
ImageInfo imageInfo;
byte[] tagCache;
uint tagChecksum;
byte[] _dataCache;
uint _dataChecksum;
ImageInfo _imageInfo;
byte[] _tagCache;
uint _tagChecksum;
public Dart() => imageInfo = new ImageInfo
public Dart() => _imageInfo = new ImageInfo
{
ReadableSectorTags = new List<SectorTagType>(),
ReadableMediaTags = new List<MediaTagType>(),