Skip to content

Commit

Permalink
remove accidental introduction of default parameter (not supported by…
Browse files Browse the repository at this point in the history
… .net 3.5)
  • Loading branch information
gbirchmeier committed Feb 1, 2016
1 parent 77488de commit 9084a69
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion QuickFIXn/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,13 @@ public bool GenerateHeartbeat(Message testRequest)
return SendRaw(heartbeat, 0);
}

internal bool GenerateReject(MessageBuilder msgBuilder, FixValues.SessionRejectReason reason, int field=0)

internal bool GenerateReject(MessageBuilder msgBuilder, FixValues.SessionRejectReason reason)
{
return GenerateReject(msgBuilder.RejectableMessage(), reason, 0);
}

internal bool GenerateReject(MessageBuilder msgBuilder, FixValues.SessionRejectReason reason, int field)
{
return GenerateReject(msgBuilder.RejectableMessage(), reason, field);
}
Expand Down

0 comments on commit 9084a69

Please sign in to comment.