mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🎨REFACTOR: Use auto-properties.
This commit is contained in:
@@ -32,32 +32,29 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Claunia.Encoding;
|
||||
using DiscImageChef.CommonTypes;
|
||||
using System.Text;
|
||||
using DiscImageChef.DiscImages;
|
||||
using Schemas;
|
||||
using Encoding = System.Text.Encoding;
|
||||
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
|
||||
public partial class PascalPlugin : IReadOnlyFilesystem
|
||||
{
|
||||
IMediaImage device;
|
||||
byte[] bootBlocks;
|
||||
byte[] catalogBlocks;
|
||||
Encoding currentEncoding;
|
||||
|
||||
bool debug;
|
||||
IMediaImage device;
|
||||
List<PascalFileEntry> fileEntries;
|
||||
bool mounted;
|
||||
FileSystemType xmlFsType;
|
||||
public FileSystemType XmlFsType => xmlFsType;
|
||||
|
||||
PascalVolumeEntry mountedVolEntry;
|
||||
|
||||
public FileSystemType XmlFsType { get; private set; }
|
||||
public string Name => "U.C.S.D. Pascal filesystem";
|
||||
public Guid Id => new Guid("B0AC2CB5-72AA-473A-9200-270B5A2C2D53");
|
||||
public Encoding Encoding => currentEncoding;
|
||||
public Encoding Encoding { get; private set; }
|
||||
|
||||
public Errno ListXAttr(string path, ref List<string> xattrs)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user