Skip to content

Commit

Permalink
remove extra semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisanwal committed Sep 17, 2024
1 parent 9e2364d commit 95d8761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/sproutsocial/nsq/NSQMessage.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void requeue() {
@Override
public void requeue(int delayMillis) {
if (responded.compareAndSet(false, true)) {
connection.requeue(id, delayMillis);;
connection.requeue(id, delayMillis);
}
}

Expand Down

0 comments on commit 95d8761

Please sign in to comment.