mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code restyling.
This commit is contained in:
@@ -56,11 +56,10 @@ namespace Aaru.Partitions
|
||||
|
||||
public List<Type> GetAllMediaImagePlugins() => null;
|
||||
|
||||
public List<Type> GetAllPartitionPlugins()
|
||||
{
|
||||
return Assembly.GetExecutingAssembly().GetTypes().Where(t => t.GetInterfaces().Contains(typeof(IPartition)))
|
||||
.Where(t => t.IsClass).ToList();
|
||||
}
|
||||
public List<Type> GetAllPartitionPlugins() => Assembly.
|
||||
GetExecutingAssembly().GetTypes().
|
||||
Where(t => t.GetInterfaces().Contains(typeof(IPartition))).
|
||||
Where(t => t.IsClass).ToList();
|
||||
|
||||
public List<Type> GetAllReadOnlyFilesystemPlugins() => null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user