REFACTOR: Member or type can be made internal.

This commit is contained in:
2017-12-20 02:08:37 +00:00
parent b53b80c998
commit ef49fdfd45
87 changed files with 544 additions and 544 deletions

View File

@@ -37,7 +37,7 @@ using DiscImageChef.Devices;
namespace DiscImageChef.Core.Devices
{
public partial class Reader
partial class Reader
{
bool ataReadLba;
bool ataReadRetryLba;
@@ -57,24 +57,24 @@ namespace DiscImageChef.Core.Devices
Identify.IdentifyDevice ataId;
public bool IsLBA
internal bool IsLBA
{
get { return lbaMode; }
}
public ushort Cylinders
internal ushort Cylinders
{
get { return cylinders; }
}
public byte Heads
internal byte Heads
{
get { return heads; }
}
public byte Sectors
internal byte Sectors
{
get { return sectors; }
}
public (uint, byte, byte) GetDeviceCHS()
(uint, byte, byte) GetDeviceCHS()
{
if(dev.Type != DeviceType.ATA) return (0, 0, 0);