Skip to content

Commit 9dc0faf

Browse files
authored
Update DefaultSessionSchedule.java
Minor change
1 parent 7c84fb3 commit 9dc0faf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,9 @@ public String toString() {
332332
private void formatTimeInterval(StringBuilder buf, TimeInterval timeInterval,
333333
SimpleDateFormat timeFormat, boolean local) {
334334
if (isNonStopSession) {
335-
buf.append("nonstop (NonstopSession is active)");
335+
buf.append("nonstop");
336336
return;
337-
}
338-
else if (isWeekdaySession) {
337+
} else if (isWeekdaySession) {
339338
try {
340339
for (int i = 0; i < weekdayOffsets.length; i++) {
341340
buf.append(DayConverter.toString(weekdayOffsets[i]));

0 commit comments

Comments
 (0)