Skip to content

Commit f488951

Browse files
Merge pull request #688 from Lehonti/improvement1
Added `readonly` modifier to `private` fields that are never modified
2 parents a108338 + f964b08 commit f488951

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

QueryBuilder.Tests/Oracle/OracleDateConditionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class OracleDateConditionTests : TestSupport
99
private const string TableName = "Table";
1010
private const string SqlPlaceholder = "GENERATED_SQL";
1111

12-
private OracleCompiler compiler;
12+
private readonly OracleCompiler compiler;
1313

1414
public OracleDateConditionTests()
1515
{

QueryBuilder.Tests/Oracle/OracleLimitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class OracleLimitTests : TestSupport
99
private const string TableName = "Table";
1010
private const string SqlPlaceholder = "GENERATED_SQL";
1111

12-
private OracleCompiler compiler;
12+
private readonly OracleCompiler compiler;
1313

1414
public OracleLimitTests()
1515
{

0 commit comments

Comments
 (0)