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:
@@ -1369,10 +1369,10 @@ namespace DiscImageChef.Partitions
|
||||
}
|
||||
};
|
||||
|
||||
public virtual string Name => "UNIX hardwired";
|
||||
public virtual Guid Id => new Guid("9ED7E30B-53BF-4619-87A0-5D2002155617");
|
||||
public string Name => "UNIX hardwired";
|
||||
public Guid Id => new Guid("9ED7E30B-53BF-4619-87A0-5D2002155617");
|
||||
|
||||
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>();
|
||||
Partition[] parts;
|
||||
|
||||
Reference in New Issue
Block a user