Skip to content

Commit 9e9ed4b

Browse files
committed
Consistent access modifiers.
1 parent da6d7b1 commit 9e9ed4b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Provider/src/FirebirdSql.Data.FirebirdClient/Common/Marshal2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace FirebirdSql.Data.Common
2323
{
24-
static class Marshal2
24+
internal static class Marshal2
2525
{
2626
public static int SizeOf<T>()
2727
{

Provider/src/FirebirdSql.Data.FirebirdClient/Common/ReadBuffer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace FirebirdSql.Data.Common
2323
{
24-
class ReadBuffer
24+
internal class ReadBuffer
2525
{
2626
byte[] _buffer;
2727
int _readPosition;

Provider/src/FirebirdSql.Data.FirebirdClient/Common/SqlStateMapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace FirebirdSql.Data.Common
2323
{
24-
static class SqlStateMapping
24+
internal static class SqlStateMapping
2525
{
2626
static IDictionary<int, string> _mapping = new Dictionary<int, string>()
2727
{

Provider/src/FirebirdSql.Data.FirebirdClient/Common/TimeoutHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace FirebirdSql.Data.Common
2323
{
24-
static class TimeoutHelper
24+
internal static class TimeoutHelper
2525
{
2626
public static readonly TimeSpan InfiniteTimeSpan =
2727
#if NET40

Provider/src/FirebirdSql.Data.FirebirdClient/Common/TraceHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace FirebirdSql.Data.Common
2424
{
25-
static class TraceHelper
25+
internal static class TraceHelper
2626
{
2727
public const string Name = "FirebirdSql.Data.FirebirdClient";
2828
public const string ConditionalSymbol = "TRACE";

Provider/src/FirebirdSql.Data.FirebirdClient/Common/Volatile2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
namespace FirebirdSql.Data.Common
2323
{
24-
static class Volatile2
24+
internal static class Volatile2
2525
{
2626
public static int Read(ref int location)
2727
{

0 commit comments

Comments
 (0)