Code restyling.

This commit is contained in:
2020-02-29 18:03:35 +00:00
parent 4ea327f0c6
commit f7e173710e
855 changed files with 43605 additions and 38045 deletions

View File

@@ -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;