[Aaru.Core] Reformat and cleanup.

This commit is contained in:
2023-10-03 22:57:50 +01:00
parent 57853b0d2a
commit af659f3fcb
85 changed files with 3303 additions and 1961 deletions

View File

@@ -36,13 +36,12 @@ namespace Aaru.Core.Devices.Report;
public sealed partial class DeviceReport
{
const string GDROM_MODULE_NAME = "GD-ROM reporter";
const string ATA_MODULE_NAME = "ATA Report";
const string SCSI_MODULE_NAME = "SCSI Report";
readonly Device _dev;
/// <summary>Initializes a device report for the specified device (must be opened)</summary>
/// <param name="device">Device</param>
public DeviceReport(Device device) => _dev = device;
const string GDROM_MODULE_NAME = "GD-ROM reporter";
const string ATA_MODULE_NAME = "ATA Report";
const string SCSI_MODULE_NAME = "SCSI Report";
}