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

@@ -45,9 +45,9 @@ namespace DiscImageChef.Core.Devices.Scanning
/// <summary>
/// Implements scanning the media from an SCSI device
/// </summary>
public static class Scsi
public partial class MediaScan
{
public static ScanResults Scan(string mhddLogPath, string ibgLogPath, string devicePath, Device dev)
public ScanResults Scsi()
{
ScanResults results = new ScanResults();
bool aborted;