Skip to content

Commit

Permalink
Add missing implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Whitehouse committed Dec 31, 2024
1 parent b5d3533 commit 60b0f6b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions quickfixj-base/src/main/java/quickfix/Message.java
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@ public final void setHeaderUtcTimeStamp(int field, LocalDateTime value, UtcTimes
header.setUtcTimeStamp(field, value, timestampPrecision);
}

public final void removeHeaderField(int field) {
header.removeField(field);
}

public final Trailer getTrailer() {
return trailer;
}
Expand Down

0 comments on commit 60b0f6b

Please sign in to comment.