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:
@@ -60,10 +60,10 @@ namespace DiscImageChef.Partitions
|
||||
|
||||
const uint XBOX360_DEVKIT_MAGIC = 0x00020000;
|
||||
|
||||
public virtual string Name => "Xbox partitioning";
|
||||
public virtual Guid Id => new Guid("E3F6FB91-D358-4F22-A550-81E92D50EB78");
|
||||
public string Name => "Xbox partitioning";
|
||||
public Guid Id => new Guid("E3F6FB91-D358-4F22-A550-81E92D50EB78");
|
||||
|
||||
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