Skip to content

Commit 8cf9cf5

Browse files
Moved readonly fields before non-readonly fields.
1 parent 3956902 commit 8cf9cf5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/NHapi.Base/Model/AbstractGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public abstract class AbstractGroup : IGroup
4444
{
4545
private static readonly IHapiLog Log;
4646

47-
private List<AbstractGroupItem> items;
4847
private readonly IModelClassFactory myFactory;
48+
private List<AbstractGroupItem> items;
4949

5050
static AbstractGroup()
5151
{

src/NHapi.Base/Util/MessageIterator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ public class MessageIterator : IEnumerator
2626
{
2727
private static readonly IHapiLog Log;
2828

29+
private readonly bool handleUnexpectedSegments;
2930
private IStructure currentStructure;
3031
private string direction;
3132
private Position nextRenamedField;
32-
private readonly bool handleUnexpectedSegments;
3333

3434
static MessageIterator()
3535
{

0 commit comments

Comments
 (0)