🎨REFACTOR: Plugins do not need to expose their methods as virtual.

This commit is contained in:
2017-12-26 07:28:40 +00:00
parent 6aee3c9cb1
commit 94d8173b3a
168 changed files with 2161 additions and 2161 deletions

View File

@@ -50,10 +50,10 @@ namespace DiscImageChef.Partitions
const uint TYPE_RISCIX_SCSI = 2;
const uint TYPE_MASK = 15;
public virtual string Name => "Acorn FileCore partitions";
public virtual Guid Id => new Guid("A7C8FEBE-8D00-4933-B9F3-42184C8BA808");
public string Name => "Acorn FileCore partitions";
public Guid Id => new Guid("A7C8FEBE-8D00-4933-B9F3-42184C8BA808");
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>();