Skip to content

Commit 477bc0f

Browse files
David EllingsworthDavid Ellingsworth
David Ellingsworth
authored and
David Ellingsworth
committed
GH-3530: Switch to file scoped namespace per DeepSource.
1 parent a7cb944 commit 477bc0f

File tree

1 file changed

+14
-20
lines changed

1 file changed

+14
-20
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
using NHibernate.SqlCommand;
72

8-
namespace NHibernate.Test.NHSpecificTest.GH3530
3+
namespace NHibernate.Test.NHSpecificTest.GH3530;
4+
5+
public abstract class Entity
96
{
10-
public abstract class Entity
11-
{
12-
public virtual Guid Id { get; set; }
13-
}
7+
public virtual Guid Id { get; set; }
8+
}
149

15-
public abstract class DataEntity<T>:Entity where T : struct
16-
{
17-
public virtual T DataValue { get; set; }
18-
}
10+
public abstract class DataEntity<T>:Entity where T : struct
11+
{
12+
public virtual T DataValue { get; set; }
13+
}
1914

20-
public class IntegerEntity : DataEntity<int> { }
21-
public class DateTimeEntity : DataEntity<DateTime> { }
15+
public class IntegerEntity : DataEntity<int> { }
16+
public class DateTimeEntity : DataEntity<DateTime> { }
2217

23-
public class DoubleEntity : DataEntity<double> { }
24-
public class DecimalEntity : DataEntity<decimal> { }
25-
public class NHDateTimeEntity : DataEntity<DateTime> { }
26-
}
18+
public class DoubleEntity : DataEntity<double> { }
19+
public class DecimalEntity : DataEntity<decimal> { }
20+
public class NHDateTimeEntity : DataEntity<DateTime> { }

0 commit comments

Comments
 (0)