mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
REFACTOR: Member or type can be made internal.
This commit is contained in:
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class Ata28
|
||||
static class Ata28
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class Ata48
|
||||
static class Ata48
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class AtaCHS
|
||||
static class AtaCHS
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class Atapi
|
||||
static class Atapi
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class Cfa
|
||||
static class Cfa
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class MCPT
|
||||
static class MCPT
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.ATA
|
||||
{
|
||||
public static class Smart
|
||||
static class Smart
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Adaptec
|
||||
static class Adaptec
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class ArchiveCorp
|
||||
static class ArchiveCorp
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Certance
|
||||
static class Certance
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Fujitsu
|
||||
static class Fujitsu
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class HL_DT_ST
|
||||
static class HL_DT_ST
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class HP
|
||||
static class HP
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Kreon
|
||||
static class Kreon
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class MMC
|
||||
static class MMC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class NEC
|
||||
static class NEC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Pioneer
|
||||
static class Pioneer
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Plasmon
|
||||
static class Plasmon
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class Plextor
|
||||
static class Plextor
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class SBC
|
||||
static class SBC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class SMC
|
||||
static class SMC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -32,9 +32,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class SPC
|
||||
static class SPC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class SSC
|
||||
static class SSC
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SCSI
|
||||
{
|
||||
public static class SyQuest
|
||||
static class SyQuest
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SecureDigital
|
||||
{
|
||||
public static class MultiMediaCard
|
||||
static class MultiMediaCard
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@ using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Tests.Devices.SecureDigital
|
||||
{
|
||||
public static class SecureDigital
|
||||
static class SecureDigital
|
||||
{
|
||||
public static void Menu(string devPath, Device dev)
|
||||
internal static void Menu(string devPath, Device dev)
|
||||
{
|
||||
while(true)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user