General code clean-up, refactor and commenting.

This commit is contained in:
2020-11-11 04:19:18 +00:00
parent 5f07692d31
commit 6877589cc9
343 changed files with 3661 additions and 3628 deletions

View File

@@ -56,10 +56,10 @@ namespace Aaru.Partitions
public List<Type> GetAllMediaImagePlugins() => null;
public List<Type> GetAllPartitionPlugins() => 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;