mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🎨REFACTOR: Plugins do not need to expose their methods as virtual.
This commit is contained in:
@@ -48,10 +48,10 @@ namespace DiscImageChef.Partitions
|
||||
{
|
||||
const int SGI_MAGIC = 0x0BE5A941;
|
||||
|
||||
public virtual string Name => "SGI Disk Volume Header";
|
||||
public virtual Guid Id => new Guid("AEF5AB45-4880-4CE8-8735-F0A402E2E5F2");
|
||||
public string Name => "SGI Disk Volume Header";
|
||||
public Guid Id => new Guid("AEF5AB45-4880-4CE8-8735-F0A402E2E5F2");
|
||||
|
||||
public virtual bool GetInformation(IMediaImage imagePlugin, out List<Partition> partitions, ulong sectorOffset)
|
||||
public bool GetInformation(IMediaImage imagePlugin, out List<Partition> partitions, ulong sectorOffset)
|
||||
{
|
||||
partitions = new List<Partition>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user