Skip to content

Commit

Permalink
Optimize the code: remove extra spaces (apache#12470)
Browse files Browse the repository at this point in the history
  • Loading branch information
lordcheng10 authored and eolivelli committed Nov 29, 2021
1 parent abbec58 commit 6cbf471
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -717,13 +717,13 @@ protected void onNegativeAcksSend(Set<MessageId> messageIds) {

protected void onAckTimeoutSend(Set<MessageId> messageIds) {
if (interceptors != null) {
interceptors. onAckTimeoutSend(this, messageIds);
interceptors.onAckTimeoutSend(this, messageIds);
}
}

protected void onPartitionsChange(String topicName, int partitions) {
if (interceptors != null) {
interceptors. onPartitionsChange(topicName, partitions);
interceptors.onPartitionsChange(topicName, partitions);
}
}

Expand Down

0 comments on commit 6cbf471

Please sign in to comment.