mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
🎨REFACTOR: Plugins do not need to expose their methods as virtual.
This commit is contained in:
@@ -43,10 +43,10 @@ namespace DiscImageChef.Partitions
|
||||
{
|
||||
public class PC98 : IPartition
|
||||
{
|
||||
public virtual string Name => "NEC PC-9800 partition table";
|
||||
public virtual Guid Id => new Guid("27333401-C7C2-447D-961C-22AD0641A09A");
|
||||
public string Name => "NEC PC-9800 partition table";
|
||||
public Guid Id => new Guid("27333401-C7C2-447D-961C-22AD0641A09A");
|
||||
|
||||
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