Does not need receiver

Signed-off-by: Derek Collison <derek@nats.io>
This commit is contained in:
Derek Collison
2021-02-23 10:57:18 -08:00
parent 6d6a6c07ff
commit dd19f620a9

View File

@@ -2254,7 +2254,7 @@ func parseAckReplyNum(d string) (n int64) {
const expectedNumReplyTokens = 9
// Grab encoded information in the reply subject for a delivered message.
func (o *consumer) replyInfo(subject string) (sseq, dseq, dc uint64, ts int64, pending uint64) {
func replyInfo(subject string) (sseq, dseq, dc uint64, ts int64, pending uint64) {
tsa := [expectedNumReplyTokens]string{}
start, tokens := 0, tsa[:0]
for i := 0; i < len(subject); i++ {