Skip to content

Commit

Permalink
Merge pull request #688 from Lehonti/improvement1
Browse files Browse the repository at this point in the history
Added `readonly` modifier to `private` fields that are never modified
  • Loading branch information
ahmad-moussawi authored Jun 12, 2024
2 parents a108338 + f964b08 commit f488951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion QueryBuilder.Tests/Oracle/OracleDateConditionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class OracleDateConditionTests : TestSupport
private const string TableName = "Table";
private const string SqlPlaceholder = "GENERATED_SQL";

private OracleCompiler compiler;
private readonly OracleCompiler compiler;

public OracleDateConditionTests()
{
Expand Down
2 changes: 1 addition & 1 deletion QueryBuilder.Tests/Oracle/OracleLimitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class OracleLimitTests : TestSupport
private const string TableName = "Table";
private const string SqlPlaceholder = "GENERATED_SQL";

private OracleCompiler compiler;
private readonly OracleCompiler compiler;

public OracleLimitTests()
{
Expand Down

0 comments on commit f488951

Please sign in to comment.