Skip to content

Commit 11579a7

Browse files
committed
minor formatting changes
1 parent 506eda1 commit 11579a7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

quickfixj-core/src/main/java/quickfix/Session.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2203,9 +2203,10 @@ private void resendMessages(Message receivedMessage, int beginSeqNo, int endSeqN
22032203
current = msgSeqNum + 1;
22042204
}
22052205

2206-
int newBegin = beginSeqNo;
2207-
if (appMessageJustSent)
2208-
newBegin = msgSeqNum + 1;
2206+
int newBegin = beginSeqNo;
2207+
if (appMessageJustSent) {
2208+
newBegin = msgSeqNum + 1;
2209+
}
22092210
if (enableNextExpectedMsgSeqNum) {
22102211
if (begin != 0) {
22112212
generateSequenceReset(receivedMessage, begin, msgSeqNum + 1);
@@ -2215,7 +2216,7 @@ private void resendMessages(Message receivedMessage, int beginSeqNo, int endSeqN
22152216
* may not have been realistic to production on the other hand.
22162217
* Apart from the else
22172218
*/
2218-
generateSequenceResetIfNeeded(receivedMessage, newBegin, endSeqNo, msgSeqNum);
2219+
generateSequenceResetIfNeeded(receivedMessage, newBegin, endSeqNo, msgSeqNum);
22192220
}
22202221
} else {
22212222
if (begin != 0) {

0 commit comments

Comments
 (0)