Make media scanning non-static.

This commit is contained in:
2019-04-21 00:11:27 +01:00
parent 993c839751
commit 9052ea80f4
9 changed files with 55 additions and 58 deletions

View File

@@ -31,13 +31,11 @@
// ****************************************************************************/
using System;
using DiscImageChef.Devices;
namespace DiscImageChef.Core.Devices.Scanning
{
public static class Nvme
public partial class MediaScan
{
public static ScanResults Scan(string mhddLogPath, string ibgLogPath, string devicePath, Device dev) =>
throw new NotImplementedException("NVMe devices not yet supported.");
public ScanResults Nvme() => throw new NotImplementedException("NVMe devices not yet supported.");
}
}