Skip to content

Commit

Permalink
Fixed typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Asbury committed Sep 19, 2018
1 parent f15ea35 commit 1fd2cc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/nats/client/impl/NatsConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ void queueInternalOutgoing(NatsMessage msg) {
if (msg.getControlLineLength() > this.options.getMaxControlLine()) {
throw new IllegalArgumentException("Control line is too long");
}
this.writer.queueInternallMessage(msg);
this.writer.queueInternalMessage(msg);
}

void deliverMessage(NatsMessage msg) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void queue(NatsMessage msg) {
this.outgoing.push(msg);
}

void queueInternallMessage(NatsMessage msg) {
void queueInternalMessage(NatsMessage msg) {
if (this.reconnectMode.get()) {
this.reconnectOutgoing.push(msg);
} else {
Expand Down

0 comments on commit 1fd2cc4

Please sign in to comment.