Skip to content

Commit c485826

Browse files
committed
clean up
1 parent 7e35a6e commit c485826

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/NHibernate.Test/NHSpecificTest/GH3176/Entity.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
namespace NHibernate.Test.NHSpecificTest.GH3176 {
1+
namespace NHibernate.Test.NHSpecificTest.GH3176
2+
{
23
public class Entity
34
{
45
public virtual int Id { get; set; }

src/NHibernate.Test/NHSpecificTest/GH3176/FixtureByCode.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,16 @@ namespace NHibernate.Test.NHSpecificTest.GH3176
1515
public class ByCodeFixture : TestCaseMappingByCode
1616
{
1717
private readonly bool _versioned;
18+
private int _id;
19+
20+
protected override string CacheConcurrencyStrategy { get; }
1821

1922
public ByCodeFixture(string cacheStrategy, bool versioned)
2023
{
2124
_versioned = versioned;
2225
CacheConcurrencyStrategy = cacheStrategy;
2326
}
2427

25-
protected override string CacheConcurrencyStrategy { get; }
26-
27-
private int _id;
28-
2928
protected override HbmMapping GetMappings()
3029
{
3130
var mapper = new ModelMapper();

0 commit comments

Comments
 (0)